Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
68260 | 金浩 | A+B 输入输出练习IV | Python3 | Accepted | 35 MS | 3764 KB | 192 | 2024-03-22 10:20:05 |
n_list=input().split() N=int(n_list[0]) while N!=0: c=0 for i in range(1,N+1): c+=int(n_list[i]) print(c) c=0 n_list = input().split() N=int(n_list[0])