110512024-07-05 14:25:03probaKvázi-Izogrampython3Wrong answer 0/100172ms5680 KiB
m = [input() for i in range(int(input()))]

def isogram(mondat):
    betuk = [i for i in list(set(mondat)) if i in 'QWERTZUIOPASDFGHJKLYXCVBNM']
    print(betuk)
    for i in betuk:
        if mondat.count(i) > 2:
            return False
    return True
        
db = 0
for i in m:
    if isogram(i.upper()):
        db += 1
        
print(db)
SubtaskSumTestVerdictTimeMemory
subtask10/0
1Wrong answer17ms2916 KiB
2Wrong answer17ms2916 KiB
subtask20/30
3Wrong answer18ms2800 KiB
4Wrong answer17ms2968 KiB
5Wrong answer17ms2960 KiB
6Wrong answer21ms3108 KiB
7Wrong answer54ms3940 KiB
subtask30/50
8Wrong answer18ms3044 KiB
9Wrong answer18ms3064 KiB
10Wrong answer19ms3044 KiB
11Wrong answer19ms2904 KiB
12Wrong answer18ms3044 KiB
13Wrong answer18ms3044 KiB
subtask40/20
14Wrong answer25ms3172 KiB
15Wrong answer32ms3300 KiB
16Wrong answer48ms3556 KiB
17Wrong answer79ms4068 KiB
18Wrong answer125ms4708 KiB
19Wrong answer158ms5168 KiB
20Wrong answer172ms5680 KiB