121572024-12-05 12:59:20horichdominik2Bimmbamm (30)python3Accepted 30/3017ms3132 KiB
def oszthato(szam):
    return szam % 3 == 0, szam % 5 == 0
    
elsohelytelen = 0
hossz = input()
for i in range(0, int(hossz)):
    oszthato3, oszthato5 = oszthato(i+1)
    be = input()
    
    if(elsohelytelen == 0):
        if(oszthato3 and not oszthato5):
            if(be != "BIMM"):
                elsohelytelen = i+1
        if(not oszthato3 and oszthato5):
            if(be != "BAMM"):
                elsohelytelen = i+1
        if(oszthato3 and oszthato5):
            if(be != "BUMM"):
                elsohelytelen = i+1
        if(not oszthato3 and not oszthato5):
            if(be != "SZAM"):
                elsohelytelen = i+1

print(elsohelytelen)
SubtaskSumTestVerdictTimeMemory
base30/30
1Accepted0/016ms3116 KiB
2Accepted0/017ms3124 KiB
3Accepted3/316ms3124 KiB
4Accepted3/316ms3124 KiB
5Accepted3/317ms3128 KiB
6Accepted3/317ms3124 KiB
7Accepted3/317ms3124 KiB
8Accepted3/317ms3124 KiB
9Accepted3/316ms2992 KiB
10Accepted3/317ms3132 KiB
11Accepted3/317ms3008 KiB
12Accepted3/317ms2976 KiB