Submission #2862833


Source Code Expand

#include <stdio.h>
#include <string.h>

char S[30];
int cnt[26];

int main(){

	scanf("%s",S);

	int len=strlen(S);

	int i;

	for(i=0;i<len;i++){
	cnt[S[i]-'a']++;
	}

	int flag=0;

	for(i=0;i<26;i++){
		if(cnt[i]>1){flag=1;}
	}
	if(flag==0){printf("yes\n");}
	else{printf("no\n");}

return 0;
}

Submission Info

Submission Time
Task B - Varied
User tekitouk
Language C (GCC 5.4.1)
Score 200
Code Size 323 Byte
Status AC
Exec Time 1 ms
Memory 128 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:9:2: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%s",S);
  ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 13
Set Name Test Cases
Sample a01, a02, a03
All a01, a02, a03, b04, b05, b06, b07, b08, b09, b10, b11, b12, b13
Case Name Status Exec Time Memory
a01 AC 0 ms 128 KB
a02 AC 1 ms 128 KB
a03 AC 1 ms 128 KB
b04 AC 0 ms 128 KB
b05 AC 0 ms 128 KB
b06 AC 0 ms 128 KB
b07 AC 1 ms 128 KB
b08 AC 0 ms 128 KB
b09 AC 1 ms 128 KB
b10 AC 0 ms 128 KB
b11 AC 0 ms 128 KB
b12 AC 0 ms 128 KB
b13 AC 1 ms 128 KB