Online Judge | Problem Set | Authors | Online Contests | User | ||||||
---|---|---|---|---|---|---|---|---|---|---|
Web Board Home Page F.A.Qs Statistical Charts | Current Contest Past Contests Scheduled Contests Award Contest |
Language: Customer support
Description Customer support department in an "Incomprehension Amateurs, Ltd" software company has call center for answering users' questions. Support prices are as follows:
So, for example, if user asks the same question three times, first receives incorrect answer, then correct one, and the third time correct answer with explanation, it will cost him 10 + 20 + (40 + 1 * 10) = 80 USD. Customers are billed monthly according to call log. Company engineers review the log and for each question determine: 1. unique number, so the equivalent questions have same numbers, Given that data, your program must calculate the payment amount. Input Input file contains number of calls N followed by N triples qi ai xi, where qi is integer question number, ai = 1 if the answer was correct, 0 otherwise, xi = 1 if explanation was given, 0 otherwise. Constraints1 ≤ N ≤ 10000, 1 ≤ qi ≤ 106. Output Output file must contain a single number — payment amount. Sample Input Sample Input 1 1 9834 0 1 Sample Input 2 3 33 1 0 33 0 0 33 1 1 Sample Output Sample Output 1 10 Sample Output 2 80 Hint Bold texts appearing in the sample sections are informative and do not form part of the actual data. Source Northeastern Europe 2006, Far-Eastern Subregion |
[Submit] [Go Back] [Status] [Discuss]
All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator