Skip to content

Commit bb6091c

Browse files
committed
[Bronze V] Title: 새싹, Time: 96 ms, Memory: 13896 KB -BaekjoonHub
1 parent 4873349 commit bb6091c

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# [Bronze V] 새싹 - 25083
2+
3+
[문제 링크](https://www.acmicpc.net/problem/25083)
4+
5+
### 성능 요약
6+
7+
메모리: 13896 KB, 시간: 96 ms
8+
9+
### 분류
10+
11+
구현
12+
13+
### 제출 일자
14+
15+
2025년 8월 1일 01:45:04
16+
17+
### 문제 설명
18+
19+
<p>아래 예제와 같이 새싹을 출력하시오.</p>
20+
21+
### 입력
22+
23+
<p>입력은 없다.</p>
24+
25+
### 출력
26+
27+
<p>새싹을 출력한다.</p>
28+
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class Main {
2+
public static void main (String[] args){
3+
String s = """
4+
,r\'\"7
5+
r`-_ ,\' ,/
6+
\\. \". L_r\'
7+
`~\\/
8+
|
9+
|
10+
""";
11+
System.out.println(s);
12+
}
13+
}

0 commit comments

Comments
 (0)