You are viewing a single comment's thread. Return to all comments →
n, k = map(int, input().split()) height = list(map(int, input().split()))`` max_hurd_height = max(height) if k > max_hurd_height: print("0") else: print(max_hurd_height - k)
Seems like cookies are disabled on this browser, please enable them to open this website
The Hurdle Race
You are viewing a single comment's thread. Return to all comments →