https://www.acmicpc.net/problem/10250
코드
a = int(input())
for i in range(a):
h, w, n = list(map(int,input().split()))
floor = n%h
num = n//h+1
if n%h == 0:
floor = h
num = n//h
print(floor*100 + num)
풀이
층과 호실을 구하는 건 쉽게 구할 수 있을 것이다. 하지만 n % h == 0 일 때 층과 호실이 달라지므로 if 조건문을 이용해 잘 피해 주면 된다.
728x90
'파이썬알고리즘' 카테고리의 다른 글
Baekjoon 5355 Python (0) | 2022.11.19 |
---|---|
백준 10816 파이썬 (0) | 2022.05.26 |
백준 10866 (duque) 파이썬 (0) | 2022.05.10 |
백준 2164 (deque) 파이썬 (0) | 2022.05.09 |
백준 11758 CCW 파이썬 (0) | 2022.05.09 |