반응형
문제 정보
제출 코드
import math
count = int(input())
for i in range(count):
h, w, n = map(int, input().split())
a = math.ceil(n/h)
b = n%h
if(b!=0):
print(str(b),end="")
else:
print(str(h),end="")
if(a==0):
print("{:0>2}".format(1))
else:
print("{:0>2}".format(a))
'Study > 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 2839번 Python (0) | 2021.10.04 |
---|---|
[백준 알고리즘] 2775번 Python (0) | 2021.10.04 |
[백준 알고리즘] 2869번 Python (0) | 2021.10.04 |
[백준 알고리즘] 1193번 Python (0) | 2021.10.04 |
[백준 알고리즘] 2292번 Python (0) | 2021.10.04 |
댓글