[Ques] Mario and Transformation solution codechef
Mario transforms each time he eats a mushroom as follows:
- If he is currently
small
, he turnsnormal
. - If he is currently
normal
, he turnshuge
. - If he is currently
huge
, he turnssmall
.
Given that Mario was initially normal
, find his size after eating XX mushrooms.
Input Format
- The first line of input will contain one integer TT, the number of test cases. Then the test cases follow.
- Each test case contains a single line of input, containing one integer XX.
Output Format
For each test case, output in a single line Mario’s size after eating XX mushrooms.
Print:
- NORMALNORMAL, if his final size is
normal
. - HUGEHUGE, if his final size is
huge
. - SMALLSMALL, if his final size is
small
.
You may print each character of the answer in either uppercase or lowercase (for example, the strings HugeHuge, hUgEhUgE, hugehuge and HUGEHUGE will all be treated as identical).
Constraints
- 1≤T≤1001≤T≤100
- 1≤X≤1001≤X≤100
Sample Input 1
3
2
4
12
Sample Output 1
SMALL
HUGE
NORMAL
Explanation
Test case 11: Mario’s initial size is normal
. On eating the first mushroom, he turns huge
. On eating the second mushroom, he turns small
.
Test case 22: Mario’s initial size is normal
. On eating the first mushroom, he turns huge
. On eating the second mushroom, he turns small
. On eating the third mushroom, he turns normal
. On eating the fourth mushroom, he turns huge
.
-
Solution
“Click Here“