Skip to content

Commit 8454c45

Browse files
committed
[D1] Title: 스탬프 찍기, Time: 76 ms, Memory: 22,528 KB -BaekjoonHub
1 parent b61e7b9 commit 8454c45

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# [D1] 스탬프 찍기 - 2046
2+
3+
[문제 링크](https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QKdT6AyYDFAUq)
4+
5+
### 성능 요약
6+
7+
메모리: 22,528 KB, 시간: 76 ms, 코드길이: 385 Bytes
8+
9+
### 제출 일자
10+
11+
2025-09-24 16:20
12+
13+
14+
15+
> 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import java.io.*;
2+
3+
class Solution
4+
{
5+
public static void main(String args[]) throws Exception
6+
{
7+
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
8+
int n = Integer.parseInt(br.readLine());
9+
StringBuilder sb = new StringBuilder();
10+
11+
while(n-- > 0){
12+
sb.append("#");
13+
}
14+
15+
System.out.println(sb);
16+
}
17+
}

0 commit comments

Comments
 (0)