Wrong Answer
Code
#include <stdio.h>
#include <string.h>
int main(){
int a, j, count = 0;
char word[100];
scanf("%s", word);
char com[100] = "leadinguniversity";
int len = strlen(word);
for(int i = 0; i <= 16; i++){
for ( j = 0; j < len; j++){
if (word[j] == com[i]){
count++;
break;
}
}
if (word[j] == ' '){
count++;
}
}
if (count == 17 || count == 18 ){
printf("Leading University");
}
else{
printf("Impossible");
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1024 Rearrange Character
- Contest
- Brain booster #2
- Language
- C99 (GCC 13.2.0)
- Submit At
- 2024-03-06 13:50:36
- Judged At
- 2024-11-11 03:42:09
- Judged By
- Score
- 90
- Total Time
- 1ms
- Peak Memory
- 516.0 KiB