Chef and Dice Problem Code: SDICE
Read problem statements in Bengali, Mandarin Chinese, Russian, and Vietnamese as well.
Chef has 6-sided standard dice. Each die has dimensions . Since Chef is bored during the quarantine, he decides to stack dice for fun.
First, Chef forms four vertical stacks of dice (not necessarily with the same height; empty stacks are allowed) on his table, which together make up a pile of dice with base area up to . Among all such structures, the total visible surface area of Chef's structure must be the smallest possible.
Then, Chef calculates the number of pips on the visible faces of all dice in the structure. A face of a die is visible if it does not touch the table or another die.
Now, he is wondering: among all possible arrangements of dice, what is the maximum possible total number of visible pips? Since he is busy cooking, he is asking you to solve this.
Input
- The first line of the input contains a single integer denoting the number of test cases. The description of test cases follows.
- The first and only line of each test case contains a single integer .
Output
For each test case, print a single line containing one integer ― the maximum possible number of visible pips.
Constraints
Subtasks
Subtask #1 (10 points):
Subtask #2 (10 points):
Subtask #3 (25 points):
Subtask #4 (55 points): original constraints
Example Input
1
1
Example Output
20
Explanation
Example case 1: There is only one die. If Chef places it on the table with 1 pip facing down, the visible pips are 2, 3, 4, 5 and 6, and their sum is 20
Comments
Post a Comment
Please give us your valuable feedback