본문 바로가기
python-algorithm

[백준] 11134

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

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

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

[백준] 11320  (0) 2020.12.29
[백준] 11312  (0) 2020.12.29
[백준] 11109  (0) 2020.12.29
[백준] 11034  (0) 2020.12.29
[백준] 11024  (0) 2020.12.29

댓글