쉽고 깔끔하게
[백준 알고리즘/python3] 10172번 개 문제풀이 본문
728x90
반응형

문제
10172번: 개
문제 아래 예제와 같이 개를 출력하시오. 입력 출력 예제 입력 1 복사 예제 출력 1 복사 |\_/| |q p| /} ( 0 )"""\ |"^"` | ||_/=\\__|...
www.acmicpc.net
아래 예제와 같이 개를 출력하시오.
입력
없음.
출력
개를 출력한다.
예제 입력 | 예제 출력 |
|\_/| |
<정답>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print("|\\_/|") | |
print("|q p| /}") | |
print("( 0 )\"\"\"\\") | |
print("|\"^\"` |") | |
print("||_/=\\\\__|") |
※ 10718번 We love kriii의 [대표 이스케이프 코드] 참고
728x90
반응형
'Algorithm > BAEKJOON' 카테고리의 다른 글
[백준 알고리즘/python3] 1001번 A-B 문제풀이 (0) | 2020.12.26 |
---|---|
[백준 알고리즘/python3] 1000번 A+B 문제풀이 (0) | 2020.12.23 |
[백준 알고리즘/python3] 10171번 고양이 문제풀이 (0) | 2020.12.20 |
[백준 알고리즘/python3] 10718번 We love kriii 문제풀이 (0) | 2020.12.19 |
[백준 알고리즘/python3] 2557번 Hello World 문제풀이 (0) | 2020.12.16 |