본문 바로가기
python-algorithm

[백준] 11312

by 무적김두칠 2020. 12. 29.

1
2
3
4
import sys
for _ in range(int(sys.stdin.readline())):
    a,b= map(int,sys.stdin.readline().split())
    print((a**2)//(b**2))
cs
반응형

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

[백준] 11908  (0) 2020.12.29
[백준] 11320  (0) 2020.12.29
[백준] 11134  (0) 2020.12.29
[백준] 11109  (0) 2020.12.29
[백준] 11034  (0) 2020.12.29

댓글