曾宇凡
曾宇凡
全部文章
分类
归档
标签
去牛客网
登录
/
注册
曾宇凡的博客
全部文章
(共8篇)
题解 | #多组_一维数组_T组形式#
n=int(input()) for i in range(n): s=int(input()) a = list(map(int, input().split())) print(sum(a))
2024-11-24
0
39
题解 | #单组_一维数组#
n = int(input()) a = list(map(int, input().split())) print(sum(a))
2024-11-24
0
36
题解 | #单组_一维数组#
n = int(input()) a = list(map(int, input().split())) print(sum(a))
2024-11-24
2
35
题解 | #多组_A+B_零尾模式#
while True: a,b = map(int,input().split()) if a+b==0: break print(a+b)
2024-11-24
0
43
题解 | #多组_A+B_T组形式#
t=int(input()) for i in range(t): a,b = map(int,input().split()) print(a+b)
2024-11-24
6
36
题解 | #多组_A+B_EOF形式#
while True: try: a,b = map(int,input().split()) print(a+b) except: break
2024-11-24
0
95
题解 | #单组_A+B#
a,b=map(int,input().split()) print(a+b)
2024-11-24
0
31
题解 | #只有输出#
print("Hello Nowcoder! ")
2024-11-24
0
42