NC18209. A+B(6)
描述
https://ac.nowcoder.com/acm/contest/5657#question
输入描述
输入数据有多组, 每行表示一组输入数据。
每行的第一个整数为整数的个数n(1 <= n <= 100)。
接下来n个正整数, 即需要求和的每个正整数。
输出描述
每组数据输出求和的结果
示例1
输入:
4 1 2 3 4 5 1 2 3 4 5
输出:
10 15
Python(2.7.3) 解法, 执行用时: 20ms, 内存消耗: 2976K, 提交时间: 2020-12-14 23:26:13
import sys for line in sys.stdin: print(sum(map(int,line.split())[1:]))
Python3(3.9) 解法, 执行用时: 19ms, 内存消耗: 2808K, 提交时间: 2020-11-16 14:40:32
import sys for l in sys.stdin: print(sum(map(int,l.split()[1:])))