예제를 보며 패턴을 파악하여 코드를 짜면 된다.
반례 참고 :
1
6 12 59
답 : 510
import sys
t = int(input())
for _ in range(t):
h, w, n = map(int, sys.stdin.readline().split())
gh = 1
floor = 1
while True:
if n <= h :
floor = n
break
else:
n -= h
gh += 1
if gh >= 10:
print(f'{floor}{gh}')
else:
print(f'{floor}0{gh}')
'백준' 카테고리의 다른 글
N과 M (2) - 15650 번 (0) | 2022.10.03 |
---|---|
N과 M (1) - 15649 번 (0) | 2022.10.02 |
이항 계수 1 - 11050번 (0) | 2022.10.01 |
분해합 - 2231번 (0) | 2022.09.30 |
팰린드롬수 - 1259번 (0) | 2022.09.30 |
댓글