컴공생의 다이어리
[파이썬, Python] 백준 10250번 : ACM 호텔 본문
백준 10250번 : ACM 호텔
내 코드
import sys
t=int(input())
for _ in range(0,t):
h,w,n = map(int,sys.stdin.readline().split())
yy = n % h
xx = n//h + 1
if yy==0:
yy = h
xx -= 1
print(yy*100+xx)
728x90
반응형
'Development > Algorithm & Coding Test' 카테고리의 다른 글
[파이썬, Python] 백준 2839번 : 설탕 배달 (2) | 2021.06.14 |
---|---|
[파이썬, Python] 백준 2775번 : 부녀회장이 될테야 (0) | 2021.06.13 |
[파이썬, Python] 백준 2839번 : 설탕 배달 (0) | 2021.06.10 |
[파이썬, Python] 백준 2869번 : 달팽이는 올라가고 싶다 (0) | 2021.06.09 |
[파이썬, Python] 백준 1193번 : 분수찾기 (0) | 2021.06.05 |
Comments