본문 바로가기
Python/백준

백준 - 9085 더하기

by sophia02 2022. 7. 3.
T = int(input())
for i in range(T):
    N = int(input())
    S = sum(list(map(int, input().split())))
    print(S)

'Python > 백준' 카테고리의 다른 글

백준 1924 - 2007년  (0) 2022.07.07
백준 2851  (0) 2022.07.04
백준 10872  (0) 2022.06.19
백준 10871  (0) 2022.06.18
백준 10991  (0) 2022.06.17