121572024-12-05 12:59:20horichdominik2Bimmbamm (30)python3Elfogadva 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)
RészfeladatÖsszpontTesztVerdiktIdőMemória
base30/30
1Elfogadva0/016ms3116 KiB
2Elfogadva0/017ms3124 KiB
3Elfogadva3/316ms3124 KiB
4Elfogadva3/316ms3124 KiB
5Elfogadva3/317ms3128 KiB
6Elfogadva3/317ms3124 KiB
7Elfogadva3/317ms3124 KiB
8Elfogadva3/317ms3124 KiB
9Elfogadva3/316ms2992 KiB
10Elfogadva3/317ms3132 KiB
11Elfogadva3/317ms3008 KiB
12Elfogadva3/317ms2976 KiB