Accepted
Code
name = ['l','e','a','d','i','n','g','u','n','i','v','e','r','s','i','t','y']
n = input()
l1 = len(name)
count = 0
for s1 in n:
if s1 in name:
count = count + 1
name.remove(s1)
if count == l1:
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:37:44
- Judged At
- 2024-11-11 03:41:51
- Judged By
- Score
- 100
- Total Time
- 16ms
- Peak Memory
- 3.129 MiB