QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#564460#8586. Partyiyedoo0 12ms10704kbPython3189b2024-09-15 01:36:132024-09-15 01:36:13

Judging History

你现在查看的是最新测评结果

  • [2024-09-15 01:36:13]
  • 评测
  • 测评结果:0
  • 用时:12ms
  • 内存:10704kb
  • [2024-09-15 01:36:13]
  • 提交

answer

n = int(input())
a = list(map(int, input().split(" ")))

a.sort(reverse=True)

happiness = 0

for i in range(n):
  if i + 1 <= n // 2 + 1:
    happiness += a[i]

print(happiness)

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 49
Accepted
time: 12ms
memory: 10612kb

input:

5
3 2 -1 4 5

output:

12

result:

ok single line: '12'

Test #2:

score: 49
Accepted
time: 10ms
memory: 10704kb

input:

1
10

output:

10

result:

ok single line: '10'

Test #3:

score: 0
Wrong Answer
time: 10ms
memory: 10648kb

input:

6
1 -3 2 10 -4 9

output:

22

result:

wrong answer 1st lines differ - expected: '21', found: '22'

Subtask #2:

score: 0
Skipped

Dependency #1:

0%

Subtask #3:

score: 0
Skipped

Dependency #1:

0%