#P912. Fergusonball Ratings
Fergusonball Ratings
題目描述
Fergusonball players are given a star rating based on the number of points that they score
and the number of fouls that they commit. Specifically, they are awarded 5 stars for each
point scored, and 3 stars are taken away for each foul committed. For every player, the
number of points that they score is greater than the number of fouls that they commit.
Your job is to determine how many players on a team have a star rating greater than 40.
You also need to determine if the team is considered a gold team which means that all the
players have a star rating greater than 40.
輸入格式
The first line of input consists of a positive integer N representing the total number of players
on the team. This is followed by a pair of consecutive lines for each player. The first line
in a pair is the number of points that the player scored. The second line in a pair is the
number of fouls that the player committed. Both the number of points and the number of
fouls, are non-negative integers.
輸出格式
Output the number of players that have a star rating greater than 40, immediately followed
by a plus sign if the team is considered a gold team.
Samples
["3\r\n12\r\n4\r\n10\r\n3\r\n9\r\n1\r\n","2\r\n8\r\n0\r\n12\r\n1"]
["3+","1"]
原始資料
- Zero1 題號:
a912 - Hydro 題號:
Z0912 - Locale:
zh_TW - Display:
open