Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
154134 王一诺 22不与最大数相同的数字之和 Python3 Accepted 47 MS 3760 KB 115 2026-05-24 15:27:58

Tests(10/10):


Code:

input() a=sorted(list(map(int,input().split()))) b=a.pop() while a[len(a)-1]==b: b = a.pop() print(sum(a))