728x90
반응형
문제 링크
https://www.acmicpc.net/problem/10250
풀이
for _ in range(int(input())):
h,w,n = map(int, input().split())
X = n // h + 1
Y = n % h
if Y == 0:
X = n//h
Y = h
print(Y*100+X)
n % h 가 0일 때를 생각하지 못하고 계속 틀렸다가 나중에 깨달았다.
728x90
반응형
댓글