Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 1.77 KB

506-relative-ranks.md

File metadata and controls

45 lines (28 loc) · 1.77 KB

506. Relative Ranks - 相对名次

给出 N 名运动员的成绩,找出他们的相对名次并授予前三名对应的奖牌。前三名运动员将会被分别授予 “金牌”,“银牌” 和“ 铜牌”("Gold Medal", "Silver Medal", "Bronze Medal")。

(注:分数越高的选手,排名越靠前。)

示例 1:

输入: [5, 4, 3, 2, 1]
输出: ["Gold Medal", "Silver Medal", "Bronze Medal", "4", "5"]
解释: 前三名运动员的成绩为前三高的,因此将会分别被授予 “金牌”,“银牌”和“铜牌” ("Gold Medal", "Silver Medal" and "Bronze Medal").
余下的两名运动员,我们只需要通过他们的成绩计算将其相对名次即可。

提示:

  1. N 是一个正整数并且不会超过 10000。
  2. 所有运动员的成绩都不相同。

题目标签:

题目链接:LeetCode / LeetCode中国

题解

Language Runtime Memory
python3 72 ms 15 MB
class Solution:
    def findRelativeRanks(self, nums: List[int]) -> List[str]:
        score = {s: i + 1 for i, s in enumerate(sorted(nums, reverse=True))}
        return [("Gold Medal", "Silver Medal", "Bronze Medal")[score[s] - 1] if score[s] <= 3 else str(score[s]) for s in nums]