https://www.acmicpc.net/problem/10250
#Solution
import math
case = int(input())
result = []
for i in range(case):
H, W, N = map(int, input().split())
N_width = str(math.ceil(N / H))
if H == 1 or N % H == 0:
N_height = str(H)
else:
N_height = str(N % H)
room = N_height+"{0:0>2}".format(N_width)
result.append(room)
for i in result:
print(int(i))
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#52 백준 파이썬 [2775] 부녀회장이 될테야 (0) | 2019.03.15 |
---|---|
#51 백준 파이썬 [1924] 2007년 (0) | 2019.03.15 |
#49 백준 파이썬 [1011] Fly me to the Alpha Centauri (4) | 2019.03.12 |
#48 백준 파이썬 [1193] 분수찾기 (0) | 2019.03.12 |
#47 백준 파이썬 [2292] 벌집 (0) | 2019.03.12 |