Submission #538257

#TimeUsernameProblemLanguageResultExecution timeMemory
538257tkwiatkowskiArt Exhibition (JOI18_art)C++17
Compilation error
0 ms0 KiB
def solve():
	n = int(input())
	artworks = []
	for i in range(n):
		artworks.append(list(map(int, input().split())))

	artworks.sort()

	maxx = -10**18
	ans = 0
	pref = 0
	for a, b in artworks:
		maxx = max(a - pref, maxx)
		pref += b
		ans = max(maxx + pref - a, ans)
	print(ans)
solve()

Compilation message (stderr)

art.cpp:1:1: error: 'def' does not name a type
    1 | def solve():
      | ^~~