/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 0ms 516.0 KiB
#2 Accepted 0ms 284.0 KiB
#3 Accepted 0ms 284.0 KiB
#4 Accepted 0ms 320.0 KiB
#5 Wrong Answer 0ms 320.0 KiB
#6 Accepted 0ms 284.0 KiB
#7 Accepted 0ms 320.0 KiB
#8 Accepted 1ms 516.0 KiB
#9 Accepted 0ms 324.0 KiB
#10 Accepted 0ms 516.0 KiB
#11 Accepted 0ms 352.0 KiB

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