QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#523961#8768. Arrested Developmentwuxman57RE 0ms0kbPython3143b2024-08-19 02:50:452024-08-19 02:50:45

Judging History

你现在查看的是最新测评结果

  • [2024-08-19 02:50:45]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:0kb
  • [2024-08-19 02:50:45]
  • 提交

answer

n = int(input())

ans = 0

for x in range(1, n):
	line = [int(i) for i in iput().split(" ")]
	ans += min(line[0], line[1])
	
print(ans)

详细

Test #1:

score: 0
Dangerous Syscalls

input:

4
100 1
1 90
1 20
1 20

output:


result: