Wrong Answer
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