CodechefJun 19, 2025

Too many items

Hazrat Ali

Codechef

Chef bought N items from a shop. Although it is hard to carry all these items in hand, so Chef has to buy some polybags to store these items.

1 polybag can contain at most 10 items. What is the minimum number of polybags needed by Chef?

Input Format

  • The first line will contain an integer T- number of test cases. Then the test cases follow.
  • The first and only line of each test case contains an integer N- the number of items bought by Chef.

Output Format

For each test case, output the minimum number of polybags required.

Constraints

  • 1≤T≤1000
  • 1≤N≤1000

Sample 1:

Input
3
20
24
99

Output
2
3
10

Solution

import math

T = int(input())
for _ in range(T):
    N = int(input())
    polybags = math.ceil(N / 10)
    print(polybags)




 

Comments