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
hide comments
|
kishorerabha:
2019-10-31 15:16:40
why doesn't using double work? are the values being provided have decimal places more than 15? |
|
pratiyush_05:
2019-06-02 16:42:36
Was not working with double so I tried with string and BAAM ,....got accepted |
|
problem_solved:
2019-01-23 14:35:50
Remember that the input is a rational number which means [spoiler] Last edit: 2019-05-02 09:47:37 |
|
saurabhshadow:
2018-11-03 22:38:48
hi
|
|
shashankpathak:
2018-11-02 17:55:44
Why can't we think like [spoiler] will be the answer?? Last edit: 2019-01-05 12:27:32 |
|
manjeet_:
2018-07-08 15:48:37
do it by getting input in a string...dont use double...dunno why its giving WA |
|
karan_yadav:
2018-06-28 09:56:55
Spent an hour wondering why 2.3333 won't pass :(.
|
|
sinersnvrsleep:
2018-02-06 12:16:11
dont give up on this question very easy start with the very basic of [spoiler] Last edit: 2018-08-22 16:05:04 |
|
bks19:
2017-07-05 05:27:50
Dont use double use string for input ;even though ur answer is correct using double. |
|
sanjitpd_777:
2017-06-23 10:19:22
got AC in one go in 0 sec..
|
Added by: | cegprakash |
Date: | 2012-10-12 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |