Skip to content

Commit f0913f4

Browse files
committed
2026년 03월 26일 15:47:02
1 parent ae2e15b commit f0913f4

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# [3143] 리스트 출력하기
2+
### 채점 결과
3+
Accepted
4+
### 제출 일자
5+
2026년 03월 26일 15:47:02
6+
### 성능 요약[추후 구현 예정]
7+
- 메모리: N/A KB
8+
- 시간: N/A ms
9+
---
10+
### 문제 링크
11+
https://code.pusan.ac.kr/problem/3143
12+
### 난이도
13+
매우 쉬움
14+
### 문제 설명
15+
값을 입력받아 리스트에 저장하고 리스트를 출력하라.
16+
### 입력
17+
첫 줄에 입력받을 수의 개수를 입력하고, 다음줄부터 한 줄씩 리스트에 넣고자 하는 수를 입력받는다.
18+
### 출력
19+
리스트를 출력한다.
20+
### 예제 입력/출력
21+
**예제 입력 1**
22+
```
23+
5
24+
45
25+
46
26+
20
27+
5
28+
9
29+
```
30+
**예제 출력 1**
31+
```
32+
[45, 46, 20, 5, 9]
33+
```
34+
### 제약 사항
35+
- 시간 제한 1000ms
36+
- 메모리 제한 128mb
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
N = int(input())
2+
nums = []
3+
for i in range(N):
4+
nums.append(int(input()))
5+
print(nums)

0 commit comments

Comments
 (0)