PS/Baekjoon Online Judge
[백준 26495] Big Number [Python]
kimyoungrok
2023. 9. 7. 01:32
728x90


풀이
입력받은 양의 정수를 큰 수로 출력해주면 되는 문제다.
2, 5, 6 을 큰 수로 출력할 때
"2 "와 같은 형식이 아니라 "2"로 출력해주어야 한다.

dict에 각 양수에 맞는 큰 수를 문자열 리스트 형태로 저장해두고 출력해주는 방식으로 풀이했다.

소스코드
출처
26495번: Big Number
One of the professors at PLU has had a lot of trouble reading student programs. He just cannot read that small print. Your job is to write a program that will read a positive integer and rewrite the number in large block format. The block format for each d
www.acmicpc.net
728x90