PTRELIC - Platinum Relic!
Samuel has found a copy of a classic videogame called Crash Bandicoot!
Crash Bandicoot is a platform adventure videogame on which the player must complete levels by destroying crates and beating enemies. After completing successfully a level, the player is awarded with some prizes, such as crystals, gems and relics.
Samuel has already obtained all the crystal and gems of the game, and now he is aiming for the relics. A relic is obtained after completing successfully a Time-Trial challenge on a level.
However, Samuel knows there are two kinds of relics: Sapphire and Gold. Gold relics are harder to obtain than the sapphire ones, giving that the challenge must be completed going even faster.
When you start a Relic Challenge, the game tells you the maximum time you can expend in the level in order to obtain the sapphire relic, and after obtaining it, it tells you the gold relic time.
And Samuel has found a third hidden kind of relic even harder to obtain, the platinum relic! He wants to complete every challenge with this prize. However, Samuel doesn’t like to guess the time limit to obtain the platinum relic, so he hired you to find it quickly.
Your program must give the game a time in format hh:mm:ss:mss (hours, minutes, seconds and milliseconds respectively), where all the numbers, except hh, must have leading zeros. (By printing it in STDOUT)
Examples:
0:04:57:987
2:14:08:057
Once you submit a time, the game will answer you with the relic you will win if you beat the level with that time.
For example, if the Relic challenges are:
Sapphire: 0:02:00:000
Gold: 0:01:35:000
Platinum: 0:01:00:000
And you submit 0:01:15:000, the game will answer "GOLD". If you submit 0:02:00:000 you will get "SAPPHIRE" and if you submit a time which surpass all the time limits, you will get "NO RELIC" as an answer.
When you have the answer, you must print "PLATINUM:", followed by a blank space, and then the maximum time Samuel can expend in order to obtain a platinum relic.
Some levels are absurdly long, so you must not make any assumption of how long a level can be.
Input
You will only receive the Sapphire time limit in the format explained above.
Run Example
Game: 0:02:00:000
You: 0:01:45:000
Game: SAPPHIRE
You: 0:01:15:000
Game: GOLD
You: 0:00:45:567
Game: PLATINUM
You: 0:01:00:000
Game: PLATINUM
You: PLATINUM: 0:01:00:000
NOTE: the program should clear the output buffer after printing each line. It can be done using fflush(stdout) command or by setting the proper type of buffering at the beginning of the execution - setlinebuf(stdout).
Added by: | Samuel Nacache |
Date: | 2013-09-29 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |
Resource: | Based on a Videogame |