HomeVolumesContestsSectionsForumsUsersPrintHelpAbout

Volumes > Functions > problem:


50469 - Letter Grades

Guest
• Review clarifications (2)

Volume problems

• 50932 - Shifting rows and columns
• 50933 - Sum of the Biggest Neighbors
• 50834 - The train which leaves the f...
• 51003 - Double Prime
• 50435 - City Electric Bills
• 50527 - Sum of LCMs
• 50353 - Cube of the Largest number
• 50539 - Number of Chairs - 2
• 50469 - Letter Grades
• 51012 - Palindrome-k
• 50559 - Prime Factors of a Number
• 002. 50428 - Three Times
• 003. 50432 - Numbers and Squares
• 004. 50433 - Sum of Cubes
• 005. 50595 - Sum of the numbers
• 010. 50582 - Number of digits
• 016. 50459 - The Biggest Digit

Feedback

If you notice incorrect translations in Contester, please let author know.

Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb.
Question by Ibrahim Mesecan.

Letter Grades

The University converts grades into Letter grades. And, at the end of every semester, they keep report of each course. They count the number of students receiving each grade for every course.

Question: The grades are converted into letter grades using the conversion table on the right. Write a program that is going to read n student grades. And then, it will count the number of students receiving each grade.

Input specification
You will be given an integer number (n) at the beginning where 1 ≤ n ≤ 100. Then in the following line, you will be given n integers which are between 0 and 100.

Output specification
Show each letter grade followed by the number of students receiving that grade. Show the letter grades in increasing order starting from A.

 Sample Input   
  7
  62 29 85 71 64 94 67
 Sample Output   
  A 1
  B 1
  C 1
  D 3
  E 0
  F 1

Explanation: Here is the list of grades for each letter:
  A: 94
  B: 85
  C: 71
  D: 62, 64, 67
  E: No grade
  F: 29


Для отправки решений необходимо выполнить вход.

www.contester.ru