본문 바로가기
파이썬/백준

9085번 : 더하기

by L_SU 2022. 7. 3.
#더하기

n = int(input())
for i in range(n):
    result = 0
    sn = int(input())
    array = map(int, input().split())
    for j in array:
        result += j
    print(result)

'파이썬 > 백준' 카테고리의 다른 글

1924번 : 2007년  (0) 2022.07.07
2581번 : 소수  (0) 2022.07.06
1037번 : 약수  (0) 2022.06.20
10872번 : 팩토리얼  (0) 2022.06.19
10871번 : X보다 작은 수  (0) 2022.06.18