Wrong Answer
Code
#include <stdio.h>
#include <string.h>
int main(){
int a, count = 0;
char word[500];
scanf("%s", word);
char com[100] = "leadinguniversity";
int len = strlen(word);
for(int i = 0; i <= 16; i++){
for ( int j = 0; j < len; j++){
if (word[j] == com[i]){
count++;
break;
}
}
}
if (count == 17 ){
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:45:24
- Judged At
- 2024-11-11 03:42:12
- Judged By
- Score
- 90
- Total Time
- 1ms
- Peak Memory
- 516.0 KiB