ГлавнаяСборникиТурнирыРазделыФорумыУчастникиПечатьПомощьО системе

Сборники > Фёдор Меньшиков. Тренировки > задача:


118. 50514 - Bookkeeping

Гость
• Вопросы к жюри (2)

Задачи сборника

• 074. 50396 - Cinema Tickets - 1
• 075. 50363 - Class GPA Average
• 080. 50248 - Power of two
• 085. 50333 - Series of Squares
• 090. 50456 - nth Digit of a Number
• 095. 50651 - Largest power of two
• 110. 50288 - Even numbers in even...
• 115. 50425 - Calculating Weekly Pay
• 118. 50514 - Bookkeeping
• 120. 50426 - Calculating Sales
• 125. 50484 - Number Of Letters
• 130. 50440 - Call Center
• 132. 50504 - School contest
• 135. 50392 - How much space
• 136. 50443 - Dajte Express
• 140. 50655 - Plotpjesetueshmeria me 9
• 145. 50656 - Plotpjestueshmeria me 11

Обратная связь

Если у вас есть предложения или пожелания по работе Contester, посетите форум сайта www.contester.ru.

Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб.
Question by Ibrahim Mesecan.

Bookkeeping

You work for a company which mainly trades with 3 other companies. You record your balance in a file (you can still use cin or scanf to read or if you want you can read from "input.txt" file) with the following convention:

  1. Debit of Company A
  2. Credit of Company A
  3. Debit of Company B
  4. Credit of Company B
  5. Debit of Company C
  6. Credit of Company C

Question: Write a program that is going to read debit/credit information for 3 companies. Then, it will find out for the following:

  1. Total debts,
  2. Total credits
  3. The most debited company according to the balance

Input specification
You will be given an integer (n) the number of transactions where 0 ≤ n ≤ 2000. Then, in each of the following n lines you will be given 2 numbers :

  • Operation Code: an integer from 1 to 6 (where 1 means Debit of Company A, etc.)
  • The amount: a floating point number which is between 0 and one million

Output specification
Show the following information (floating point numbers with 2 digits precision):

  • Total debts,
  • Total credits
  • The most debited company: a char of (A or B or C)

Sample Input I
6
2 59
6 154
2 187
5 497
5 31.5
3 488
Sample Output I
1016.5 400 B

Explanation: The balance according to given information is:

Company Total Balance
A Debit 0 246
Credit 246
B Debit 488 -488
Credit 0
C Debit 528.5 -374.5
Credit 154
Then, the most debited company is B.
Для отправки решений необходимо выполнить вход.

www.contester.ru