列表

详情


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:])))

上一题