Skip to content

Commit b8ba81b

Browse files
committed
[Bronze V] Title: Copier, Time: 8 ms, Memory: 69100 KB -BaekjoonHub
1 parent 158ecd1 commit b8ba81b

2 files changed

Lines changed: 29 additions & 0 deletions

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
(0..<Int(readLine()!)!).forEach { _ in print(String(repeating: readLine()!+" ", count: 2).dropLast()) }
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# [Bronze V] Copier - 26574
2+
3+
[문제 링크](https://www.acmicpc.net/problem/26574)
4+
5+
### 성능 요약
6+
7+
메모리: 69100 KB, 시간: 8 ms
8+
9+
### 분류
10+
11+
구현
12+
13+
### 제출 일자
14+
15+
2025년 3월 11일 20:45:30
16+
17+
### 문제 설명
18+
19+
<p>Your copier broke down last week, and you need to copy a list of numbers for a class project due tomorrow! Luckily, you can use your computer to copy the numbers for you. Given a list of numbers, each on their own line, print out the number, a space, and then another copy of the number.</p>
20+
21+
### 입력
22+
23+
<p>The first line will contain a single integer n that indicates the number of numbers to follow, each on their own line. The next n lines will each contain a single number.</p>
24+
25+
### 출력
26+
27+
<p>For each of the n lines, print out the original number and a copy of the number, with one space of separation.</p>
28+

0 commit comments

Comments
 (0)