/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 0ms 284.0 KiB
#2 Accepted 0ms 284.0 KiB
#3 Accepted 0ms 284.0 KiB
#4 Accepted 0ms 284.0 KiB
#5 Accepted 0ms 284.0 KiB
#6 Accepted 0ms 284.0 KiB
#7 Accepted 0ms 284.0 KiB
#8 Accepted 0ms 284.0 KiB
#9 Accepted 0ms 284.0 KiB
#10 Accepted 0ms 284.0 KiB
#11 Accepted 0ms 284.0 KiB

Code

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

int main(){

    int count = 0;
    char word[100];

    scanf("%s", word);

    char com[17] = "leadinguniversity";
    int len = strlen(word);

    for(int i = 0; i <= 16; i++){
        for ( int j = 0; j < len; j++){
            if (com[i] == word[j] ){
                count++;
                word[j] = 'm';
                break;
            }
        }
    }

    if (count == 17 ){
        printf("Leading University\n");
    }

    else{
        printf("Impossible\n");
    }
    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 14:01:32
Judged At
2024-03-06 14:01:32
Judged By
Score
100
Total Time
0ms
Peak Memory
284.0 KiB