보안을 그리다, 훈이

[Baekjoon/Python3] 11134번 쿠키애호가 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 11134번 쿠키애호가

HooNeee 2020. 12. 7. 00:23

[Baekjoon/Python3] 11134번 쿠키애호가

 

www.acmicpc.net/problem/11134

 

11134번: 쿠키애호가

철수는 쿠키를 세상에서 제일 좋아한다. 쿠키가 있는 곳이라면 철수도 반드시 있다고 할 정도이다. 철수는 날마다 자신이 가지고 있는 쿠키 중 C개를 먹는다. C개 미만의 쿠키가 남아 있다면 전

www.acmicpc.net

 

import math
t = int(input())
for i in range(t):
    n, c = map(int, input().split())
    print(int(math.ceil(n / c)))
Comments