컴공생의 다이어리

[파이썬, Python] 백준 10250번 : ACM 호텔 본문

Development/Algorithm & Coding Test

[파이썬, Python] 백준 10250번 : ACM 호텔

컴공 K 2021. 6. 12. 00:01

백준 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
반응형
Comments