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

Tests(10/10):


Code:

input() a= list(map(int,input().split())) maxn = max(a) s = 0 for x in a: if x != maxn: s += x print(s)