Skip to content

Commit

Permalink
[Bronze III] Title: 더하기, Time: 136 ms, Memory: 113112 KB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
hmnd1257 committed Jul 21, 2023
1 parent 97a92a8 commit 42c7eee
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
24 changes: 24 additions & 0 deletions 백준/Bronze/9085. 더하기/README.md
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>

6 changes: 6 additions & 0 deletions 백준/Bronze/9085. 더하기/더하기.py
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)

0 comments on commit 42c7eee

Please sign in to comment.