← Back to List

16546번: Missing Runners ↗

Solutions

Python 3
78 B | 78 chars
N = int(input())
S = sum(list(map(int,input().split())))
print(N*(N+1)//2 - S)