Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
114855 桂敬然 A+B 输入输出练习V Python3 Accepted 44 MS 3760 KB 112 2025-03-23 19:34:22

Tests(1/1):


Code:

N = int(input()) for i in range(N): M = list(map(int,input().split(' '))) del M[0] print(sum(M))