a = int(input())
for _ in range(a):
h, w, n = map(int, input().split())
l = 1
while h < n:
n -= h
l += 1
if l < 10:
l = "0" + str(l)
else:
l = str(l)
print(str(n) + l)
l은 호실 거리
n 이 h 이하가 될때까지
n 을 h씩 빼주고
l을 1씩 더해준다
그리고 형식에 맞게끔 정리해서
출력해준다
'알고리즘' 카테고리의 다른 글
<백준> 10814번 파이썬 알고리즘 (0) | 2021.07.10 |
---|---|
<백준> 10773번 파이썬 알고리즘 (0) | 2021.07.10 |
<백준> 9012번 파이썬 알고리즘 (0) | 2021.07.10 |
<백준> 7568번 파이썬 알고리즘 (0) | 2021.07.10 |
<백준> 4949번 파이썬 알고리즘 (0) | 2021.07.10 |