63042023-11-15 16:21:39Zsombor0707Formula-1python3Accepted 100/10017ms14104 KiB
# Source: https://usaco.guide/general/io

N = int(input())

H = input()

V = input()

Vt = V.split()
Ht = H.split()


#ide jön a győztes ami úgy lesz hogy a lista elemeit összeadjuk és megnezzuk melyik a kissebb
Vmax = 111111111111111111111111110
Hmax = 111111111111111111111111110
Vi = 0
for i in Vt:
	Vi += int(i)
	if (int(i) < Vmax):
		Vmax = int(i)

Hi = 0
for i in Ht:
	Hi += int(i)
	if (int(i) < Hmax):
		Hmax = int(i)

if (Vi > Hi):
	print("Hamilton")

else:
	print("Verstappen")

#itt kell kiírni a leggyorsabb kört

if (Vmax < Hmax):
	print("Verstappen")

else: 
	print("Hamilton")
SubtaskSumTestVerdictTimeMemory
subtask10/0
1Accepted17ms11160 KiB
2Accepted17ms11076 KiB
subtask210/10
3Accepted17ms11360 KiB
4Accepted17ms11816 KiB
5Accepted17ms11964 KiB
6Accepted17ms12272 KiB
subtask315/15
7Accepted17ms12340 KiB
8Accepted17ms12496 KiB
9Accepted17ms12752 KiB
10Accepted17ms12888 KiB
11Accepted17ms13056 KiB
subtask420/20
12Accepted17ms13396 KiB
13Accepted17ms13388 KiB
14Accepted17ms13156 KiB
15Accepted17ms13456 KiB
16Accepted17ms13404 KiB
17Accepted17ms14040 KiB
18Accepted17ms13836 KiB
19Accepted17ms13892 KiB
subtask555/55
20Accepted17ms13884 KiB
21Accepted17ms13732 KiB
22Accepted17ms13952 KiB
23Accepted17ms14104 KiB
24Accepted17ms13964 KiB
25Accepted17ms13852 KiB
26Accepted17ms13804 KiB
27Accepted17ms13940 KiB
28Accepted17ms13860 KiB