/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 15ms 3.109 MiB
#2 Accepted 14ms 3.02 MiB
#3 Accepted 15ms 3.023 MiB
#4 Accepted 14ms 3.074 MiB
#5 Wrong Answer 15ms 3.105 MiB
#6 Accepted 15ms 3.098 MiB
#7 Accepted 15ms 3.062 MiB
#8 Accepted 15ms 2.902 MiB
#9 Wrong Answer 15ms 2.875 MiB

Code

string = input("")
lu = "leadinguniversity"
count = 0
for i in string:
    found = False
    for j in lu:
        if j != i:
            found = False
        else:
            found = True
            break
    if found:
        count += 1
if count >= 17:
    print("Leading University")
else:
    print("Impossible")

Information

Submit By
Type
Submission
Problem
P1024 Rearrange Character
Contest
Brain booster #2
Language
Python 3 (Python 3.12.3)
Submit At
2024-03-06 14:01:24
Judged At
2024-11-11 03:42:07
Judged By
Score
70
Total Time
15ms
Peak Memory
3.109 MiB