본문 바로가기
python-algorithm

백준 13610 Volta

by 무적김두칠 2022. 1. 10.

1
2
3
4
5
6
x,y=map(int,input().split())
for i in range(110**10):
    cmpX,cmpY=i/x,i/y
    if cmpX>=1+cmpY:
        if (i%x) ==0 :print(i//x) ;break
        else : print(i//x+1) ; break
cs
반응형

'python-algorithm' 카테고리의 다른 글

백준 15650 N과 M (2)  (0) 2022.01.10
백준 15649 N과 M (1)  (0) 2022.01.10
백준 14065 Gorivo  (0) 2022.01.10
백준 14173 Square Pasture  (0) 2022.01.10
백준 24083 短針 (Hour Hand)  (0) 2022.01.10

댓글