지나가던 개발자

[Text] 백준 5339번(콜센터) 문제 풀이 본문

PS/Etc

[Text] 백준 5339번(콜센터) 문제 풀이

KwonYongHyeon 2022. 4. 26. 13:45

 

     /~\
    ( oo|
    _\=/_
   /  _  \
  //|/.\|\\
 ||  \ /  ||
============
|          |
|          |
|          |

 

 옛날에 Text라는 것의 존재를 몰랐을 때에는 파이썬으로 저걸 한줄씩 print()하고 있었는데. 세상 참 좋아졌네. (?)

 

 Python으로 풀었던 문제들:

 

https://developer-next-to-you.tistory.com/99

 

[Python] 백준 5338번(마이크로소프트 로고) 문제 풀이

for i in [" _.-;;-._", "'-..-'| || |", "'-..-'|_.-;;-._|", "'-..-'| || |", "'-..-'|_.-''-._|"]: print(i)  출력하는 방법만 알면 풀리는 문제이다. print() 함수가 뭔지만 알면 누구나 풀 수 있다.

developer-next-to-you.tistory.com

 

https://developer-next-to-you.tistory.com/96

 

[Python] 백준 10170번(NFC West vs North) 문제 풀이

print("NFC West W L T") print("-----------------------") print("Seattle 13 3 0") print("San Francisco 12 4 0") print("Arizona 10 6 0") print("St. Louis 7 9 0") print('') print("NFC North W L T") pr..

developer-next-to-you.tistory.com

 

Comments