Submission #2383555


Source Code Expand

alphabet = ([chr(ord('a') + i) for i in range(26)])
str = input()
str = list(str)
ans = alphabet

for i in str:
    try:
        ans.remove(i)
    except:
        continue
try:
    print(ans[0])
except:
    print("None")

Submission Info

Submission Time
Task B - Not Found
User zeroalpha
Language Python (3.4.3)
Score 200
Code Size 233 Byte
Status AC
Exec Time 55 ms
Memory 3956 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 15
Set Name Test Cases
Sample sample1.txt, sample2.txt, sample3.txt
All sample1.txt, sample2.txt, sample3.txt, 1.txt, 2.txt, 3.txt, 4.txt, 5.txt, 6.txt, 7.txt, 8.txt, 9.txt, sample1.txt, sample2.txt, sample3.txt
Case Name Status Exec Time Memory
1.txt AC 17 ms 2940 KB
2.txt AC 17 ms 2940 KB
3.txt AC 22 ms 3060 KB
4.txt AC 51 ms 3956 KB
5.txt AC 55 ms 3956 KB
6.txt AC 51 ms 3956 KB
7.txt AC 48 ms 3828 KB
8.txt AC 52 ms 3956 KB
9.txt AC 55 ms 3956 KB
sample1.txt AC 17 ms 2940 KB
sample2.txt AC 17 ms 2940 KB
sample3.txt AC 17 ms 2940 KB