Studious Little Jhool
Practice
3.5 (21 votes)
Approved
Brute Force search
Data structures
Dynamic programming
Easy
Open
Problem
52% Success 13439 Attempts 20 Points 2s Time Limit 256MB Memory 1024 KB Max Code

Yes, you read it right - Little Jhool is back, but no, he's not over his break up, still. And he's sad, broken and depressed; thus, he decided to visit a psychologist. She tells him to think about his pleasant memories of childhood, and stay busy so as to not miss his ex-girlfriend.

She asks him about his favorite memories from childhood, and being the genius Mathematician Little Jhool is, he remembered that solving Mathematics problem given to him by his teacher was his favorite memory.

He had two types of notebooks, when he was a kid.

  • \(10\) problems could be solved in one page, in the first notebook.
  • \(12\) problems could be solved in one page, in the second notebook.

Little Jhool remembered how in order to maintain symmetry, if he was given with n problems in total to solve, he tore out pages from both notebooks, so no space was wasted. EVER!

But, now he's unable to solve his own problem because of his depression, and for the exercise of the week, he has to answer the queries asked by his psychologist.

Given n number of questions, print the minimum number of pages he needs to tear out from the combination of both the notebooks, so that no space is wasted.

Input Format:
The first line will contain t - number of test cases.

The second will contain an integer n - number of questions.

Output Format:
Corresponding to the input, print the minimum number of pages Little Jhool needs to tear out from the combination of both the notebooks. If it is NOT possible, print "1".

Constraints:
\(1 ≤ t ≤ 100 \)
\(1 ≤ n ≤ 113 \)

Please login to use the editor

You need to be logged in to access the code editor

Loading...

Please wait while we load the editor

Loading...
Results
Custom Input
Run your code to see the output
Submissions
Please login to view your submissions
Similar Problems
Points:20
25 votes
Tags:
AlgorithmsDynamic ProgrammingEasy
Points:20
126 votes
Tags:
AlgorithmsDynamic ProgrammingEasy
Points:20
38 votes
Tags:
ApprovedDynamic ProgrammingEasyImplementationOpen