Saturday, April 16, 2022

Mario and Transformation

 Mario transforms each time he eats a mushroom as follows:

  • If he is currently small, he turns normal.
  • If he is currently normal, he turns huge.
  • If he is currently huge, he turns small.

Given that Mario was initially normal, find his size after eating X mushrooms.

Input Format

  • The first line of input will contain one integer T, the number of test cases. Then the test cases follow.
  • Each test case contains a single line of input, containing one integer X.

Output Format

For each test case, output in a single line Mario's size after eating X mushrooms.

Print:

  • NORMAL, if his final size is normal.
  • HUGE, if his final size is huge.
  • SMALL, if his final size is small.

You may print each character of the answer in either uppercase or lowercase (for example, the strings HugehUgEhuge and HUGE will all be treated as identical).

Constraints

  • 1T100
  • 1X100

Sample Input 1 

3
2
4
12

Sample Output 1 

SMALL
HUGE
NORMAL

Explanation

Test case 1: Mario's initial size is normal. On eating the first mushroom, he turns huge. On eating the second mushroom, he turns small.

Test case 2: 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.

No comments:

Post a Comment

मुझे दिल में बसाना आसान नहीं....

पता है Recently i realised की मुझे दिल में बसाना आसान नहीं है बात-बात पे चिढ़ जाती हूं मैं दिल लगा लूं एक बार तो फिर ज़िद पे अड़...