https://www.acmicpc.net/problem/9085
1. 내가 작성한 코드
a = []
def result(n):
a = list(map(int, input().split()))
print(sum(a))
b = int(input())
for i in range(b):
c = int(input())
result(c)
프로그래머스를 보니 함수를 잘 활용해야 할 것 같아 의식해서 함수로 풀어봤다.
사실 이 문제는 이렇게 까지 작성할 필요 없이 아래와 같이 풀면 된다.
t = int(input())
for _ in range(t):
N = int(input())
print(sum(list(map(int, input().split()))))
'🔅코딩테스트 공부🔅 > ❗백준' 카테고리의 다른 글
[백준] 2747번 피보나치 수(with python) (0) | 2023.01.11 |
---|---|
[백준] 2576번 홀수(with python) (0) | 2023.01.11 |
[백준] 2490번 윷놀이(with python) (2) | 2023.01.11 |
[백준] 2506번 점수계산(with python) (0) | 2023.01.10 |
[백준] 1546번 평균(with python) (0) | 2023.01.10 |
댓글