Files
kattis/gcvwr.py
2023-06-24 16:16:50 +02:00

4 lines
101 B
Python

g, t, n = map(int, input().split())
w = map(int, input().split())
print(int((g - t) * 0.9 - sum(w)))