티스토리 뷰
https://www.acmicpc.net/problem/10250
import sys
T = int(sys.stdin.readline())
for i in range(T):
H, W, N = map(int, sys.stdin.readline().split())
if N % H == 0:
print(H*100 + (N//H))
else:
print(N % H * 100 + (N//H) + 1)
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 1920 : 수 찾기 - Python (0) | 2020.04.14 |
---|---|
[백준] 7568 : 덩치 - Python (0) | 2020.04.08 |
[백준] 2839 : 설탕 배달 - Python (0) | 2020.04.07 |
[백준] 11729 : 하노이 탑 이동 순서 - Python (0) | 2020.04.07 |
[백준] 1193 : 분수찾기 - Python (0) | 2020.04.06 |