728x90
# 10250 ACM 호텔
T = int(input())
for i in range(T):
H, W, N = map(int, input().split())
A = N//H
B = N%H
if B == 0:
if A > 9:
print(H,A, sep = '')
else:
print(H,0,A, sep = '')
else:
if A > 8:
print(B,A + 1 , sep = '')
else:
print(B,0,A + 1, sep = '')
1의 자릿수일 경우 0을 넣어주는 것과 1층을 해결해주는 게 좀 포인트였다.
728x90
'Algorithm' 카테고리의 다른 글
백준 11650 파이썬 (0) | 2022.02.01 |
---|---|
백준 11050 파이썬 (0) | 2022.01.29 |
백준 10845 파이썬 (0) | 2022.01.27 |
백준 4153 직각삼각형 (0) | 2022.01.26 |
백준 2775 파이썬 (0) | 2022.01.26 |