Home STD Contest Notification Clarification Problems Ranklist Status Print Sign Out

Budget

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)
Total Submission(s): 2011    Accepted Submission(s): 522


Problem Description
Avin¡¯s company has many ongoing projects with different budgets. His company records the budgets using numbers rounded to 3 digits after the decimal place. However, the company is updating the system and all budgets will be rounded to 2 digits after the decimal place. For example, 1.004 will be rounded down
to 1.00 while 1.995 will be rounded up to 2.00. Avin wants to know the difference of the total budget caused by the update.
 

Input
The first line contains an integer n (1 ¡Ü n ¡Ü 1, 000). The second line contains n decimals, and the i-th decimal ai (0 ¡Ü ai ¡Ü 1e18) represents the budget of the i -th project. All decimals are rounded to 3 digits.
 

Output
Print the difference rounded to 3 digits..
 

Sample Input
1 1.001 1 0.999 2 1.001 0.999
 

Sample Output
-0.001 0.001 0.000
 

Statistic | Submit | Clarifications | Back