← Back to List

13118번: 뉴턴과 사과 ↗

Solutions

Python 3
127 B | 127 chars
L = list(map(int,input().split()))
x,y,r = list(map(int,input().split()))
if x in L:
    print(L.index(x)+1)
else:
    print(0)