Skip to content

Commit 243463a

Browse files
committed
[Bronze V] Title: 고양이, Time: 116 ms, Memory: 13928 KB -BaekjoonHub
1 parent 75340c7 commit 243463a

4 files changed

Lines changed: 41 additions & 0 deletions

File tree

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# [Bronze V] 고양이 - 10171
2+
3+
[문제 링크](https://www.acmicpc.net/problem/10171)
4+
5+
### 성능 요약
6+
7+
메모리: 13928 KB, 시간: 116 ms
8+
9+
### 분류
10+
11+
구현
12+
13+
### 제출 일자
14+
15+
2023년 2월 6일 22:43:21
16+
17+
### 문제 설명
18+
19+
<p>아래 예제와 같이 고양이를 출력하시오.</p>
20+
21+
### 입력
22+
23+
<p>없음.</p>
24+
25+
### 출력
26+
27+
<p>고양이를 출력한다.</p>
28+

백준/Bronze/10171. 고양이/input.txt

Whitespace-only changes.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
\ /\
2+
) ( ')
3+
( / )
4+
\(__)|
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
public class Main {
2+
public static void main(String[] args) {
3+
4+
System.out.println("\\ /\\");
5+
System.out.println(" ) ( ')");
6+
System.out.println("( / )");
7+
System.out.println(" \\(__)|");
8+
}
9+
}

0 commit comments

Comments
 (0)