보안을 그리다, 훈이

[Baekjoon/Python3] 9550번 아이들은 사탕을 좋아해 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 9550번 아이들은 사탕을 좋아해

HooNeee 2020. 12. 6. 03:02

[Baekjoon/Python3] 9550번 아이들은 사탕을 좋아해

 

www.acmicpc.net/problem/9550

 

9550번: 아이들은 사탕을 좋아해

각 테스트 케이스마다 생일파티에 최대 몇 명의 아이들이 참석할 수 있는지 하나의 정수로 출력한다.

www.acmicpc.net

 

t = int(input())
for i in range(t):
    candy = []
    t = 0
    n, k = map(int, input().split())
    candy = list(map(int, input().split()))
    for j in candy:
        t += j // k
    print(t)
Comments