{"raw_statement":[{"iden":"statement","content":"Mr. Ya Rajaie has N books and wants to put them in bookshelves, each bookshelf can have at most 5 books. Find the minimum number of bookshelves needed to store the N books.\n\nThe first line of input contains a single integer T, the number of test cases.\n\nEach test case contains a single integer N (1 ≤ N ≤ 109), the number of Ya’s books.\n\nFor each test case, print on a single line the minimum number of bookshelves needed to store the books.\n\n"},{"iden":"input","content":"The first line of input contains a single integer T, the number of test cases.Each test case contains a single integer N (1 ≤ N ≤ 109), the number of Ya’s books."},{"iden":"output","content":"For each test case, print on a single line the minimum number of bookshelves needed to store the books."}],"translated_statement":null,"sample_group":[],"show_order":[],"formal_statement":"**Definitions**  \nLet $ T \\in \\mathbb{Z} $ be the number of test cases.  \nFor each test case $ k \\in \\{1, \\dots, T\\} $, let $ N_k \\in \\mathbb{Z} $ denote the number of books.\n\n**Constraints**  \n1. $ 1 \\le T \\le 10^5 $  \n2. For each $ k $, $ 1 \\le N_k \\le 10^9 $\n\n**Objective**  \nFor each test case $ k $, compute the minimum number of bookshelves required, where each bookshelf holds at most 5 books:  \n$$\n\\left\\lceil \\frac{N_k}{5} \\right\\rceil\n$$","simple_statement":"You have N books. Each shelf can hold at most 5 books. Find the minimum number of shelves needed.","has_page_source":false}