Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
317584 | 严添译 | 【C4-4】排名第二高的成绩 | Python3 | 通过 | 100 | 58 MS | 3752 KB | 140 | 2025-04-12 18:58:20 |
n = int(input()) scores = list(map(int, input().split())) unique_scores = sorted(list(set(scores)), reverse=True) print(unique_scores[1])