728x90
https://www.acmicpc.net/problem/10250
문제에 나온대로 구현만 하면 되는 간단한 문제였다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import sys
input = sys.stdin.readline
t = int(input())
for _ in range(t):
# 층수, 방수, 몇 번쨰 손님인지
h, w, n = map(int, input().split())
# 몇 층?
a = n % h
# 몇 호?
b = n // h + 1
if a == 0:
a = h
b -= 1
print(a * 100 + b)
|
cs |
728x90
'PS > 백준' 카테고리의 다른 글
[백준 11729번] 하노이 탑 이동 순서 (파이썬/python) (0) | 2021.06.14 |
---|---|
[백준 1929번] 소수 구하기 (파이썬/python) (0) | 2021.06.14 |
[백준 2609번] 최대공약수와 최소공배수 (파이썬/python) (0) | 2021.06.14 |
[백준 1037번] 약수 (파이썬/python) (0) | 2021.06.14 |
[백준 1436번] 영화감독 숌 (파이썬/python) (0) | 2021.06.14 |