Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134021 6倪葭轩 22不与最大数相同的数字之和 Python3 Accepted 55 MS 3756 KB 132 2025-10-25 14:24:31

Tests(10/10):


Code:

a=int(input()) b=list(map(int,input().split())) b.sort() s=0 for x in range(a): if b[x]!=b[-1]: s=s+b[x] print(s)