-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Bronze III] Title: 더하기, Time: 136 ms, Memory: 113112 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# [Bronze III] 더하기 - 9085 | ||
|
||
[문제 링크](https://www.acmicpc.net/problem/9085) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 113112 KB, 시간: 136 ms | ||
|
||
### 분류 | ||
|
||
사칙연산, 구현, 수학 | ||
|
||
### 문제 설명 | ||
|
||
<p>10보다 작거나 같은 자연수 N개를 주면 합을 구하는 프로그램을 작성하시오.</p> | ||
|
||
### 입력 | ||
|
||
<p>입력의 첫 줄에는 테스트 케이스의 개수 T(1 ≤ T ≤ 10)가 주어진다. 각 테스트 케이스는 첫 줄에 자연수의 개수 N(1 ≤ N ≤ 100)이 주어지고, 그 다음 줄에는 N개의 자연수가 주어진다. 각각의 자연수 사이에는 하나씩의 공백이 있다.</p> | ||
|
||
### 출력 | ||
|
||
<p>각 테스트 케이스에 대해서 주어진 자연수의 합을 한 줄에 하나씩 출력한다.</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
t = int(input()) | ||
for i in range(t): | ||
nums = [] | ||
n = int(input()) | ||
nums = sum(list(map(int, input().split()))) | ||
print(nums) |