This problem was used in the following GFU competitions:
GFU 2024 D3 Q3
You are cooking steaks for the first time in the Underground Kitchen, and your reputation is on the line. You need to determine if the steak is properly cooked. If it is undercooked or overcooked, you’ll be out of a job.
The first input will contain a single integer n that represents the number of data sets that follow. Each data set will consist of an integer denoting the internal temperature of the steak.
If the internal temperature of the steak is less than 165 degrees, output the string "It's Raw!!", if the temperature is greater than 220, output the string "It's Jerky!!", otherwise output the string "Very good chef.".
Example Input:
6
165
166
1111
32
212
75
Example Output:
Very good chef.
Very good chef.
It's Jerky!!
It's Raw!!
Very good chef.
It's Raw!!
This is a pretty simple program... no real tips/tricks.
Judge Data is the hidden advanced test used to determine whether the program works correctly. It's meant to test outlyer cases and ensure you're not missing something important.
Inputs
20
165
166
1111
32
212
75
164
220
221
45
33
236
76
325
124
153
167
179
190
68654
Outputs
Very good chef.
Very good chef.
It's Jerky!!
It's Raw!!
Very good chef.
It's Raw!!
It's Raw!!
Very good chef.
It's Jerky!!
It's Raw!!
It's Raw!!
It's Jerky!!
It's Raw!!
It's Jerky!!
It's Raw!!
It's Raw!!
Very good chef.
Very good chef.
Very good chef.
It's Jerky!!