Submit | All submissions | Best solutions | Back to list |
GAMES - How Many Games? |
A player has played unknown number of games. We know the average score of the player (sum of scores in all the games / number of games). Find the minimum number of games the player should have played to achieve that average.
The player can score any non-negative integer score in a game.
Input
The first line consists of an integer t, the number of test cases. Each test case consists of a single rational number which represents the average score of the player.
Output
For each test case, find the minimum number of matches the player should have played to achieve that average.
Constraints
1 <= t <= 1000
1 <= average <= 1000000 (maximum 4 digits after the decimal place)
Example
Input: 3 5 5.5 30.25 Output: 1 2 4
Added by: | cegprakash |
Date: | 2012-10-12 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |
hide comments
|
||||||||||||||
2016-06-12 18:43:00
Take input as character string, convert to integer + [spoiler] !!! AC :) Last edit: 2016-07-29 22:23:00 |
||||||||||||||
2016-05-26 07:36:55
good ques...those getting WA work on these test cases... 5.65->20 , 5.6->5 , 5.8->5 , 5.33->100 , 5.35->20 , 5.3030->1000 |
||||||||||||||
2016-03-28 22:19:52
what will be output for 3.33 |
||||||||||||||
2016-03-15 07:46:38 Pikachu
@fly_sky12 It'll be 10000 |
||||||||||||||
2016-03-12 12:48:44
if input is 3.3333 output is 3 or 10000 |
||||||||||||||
2016-01-07 10:32:02 minhthai
nice problem (plz don't use double...) |
||||||||||||||
2015-12-23 06:51:31 gomathi ganesan
Nice problem... :-) Learnt many stuff...... |
||||||||||||||
2015-12-20 13:12:46
learned about double precision |
||||||||||||||
2015-12-10 03:45:18 Prakhar Dev Gupta
AC in a GO! |
||||||||||||||
2015-10-31 16:13:53 RADHE SHYAM LODHI
100th ! |