Files
pythonmc/levieProekti/Olymp2020/PyOlymp2020Kakaato/Testuvanna.py
BarsTiger 68fb5410ee 1
2021-10-15 12:46:53 +03:00

23 lines
456 B
Python

dlina = int(input())
chisla = input().split()
parnie = []
neparnie = []
for i in range(dlina):
if int(chisla[i]) // 2 == int(chisla[i]) / 2:
parnie.append(int(chisla[i]))
else:
neparnie.append(int(chisla[i]))
if len(parnie) > len(neparnie):
for u in range(dlina):
if int(chisla[u]) in neparnie:
print(u + 1)
else:
for u in range(dlina):
if int(chisla[u]) in parnie:
print(u + 1)