QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#564465#8586. Partyiyedoo0 4ms10488kbPython3309b2024-09-15 01:45:572024-09-15 01:45:57

Judging History

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

  • [2024-09-15 01:45:57]
  • 评测
  • 测评结果:0
  • 用时:4ms
  • 内存:10488kb
  • [2024-09-15 01:45:57]
  • 提交

answer

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

a.sort(reverse=True)

happiness = 0

if n <= 200000:
  for i in range(n):
    if n % 2 == 0:
      if i + 1 <= n // 2 and a[i] >= 0:
        happiness += a[i]
    else:
      if i + 1 <= n // 2 + 1 and a[i] >= 0:
        happiness += a[i]

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 4ms
memory: 10488kb

input:

5
3 2 -1 4 5

output:


result:

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

Subtask #2:

score: 0
Skipped

Dependency #1:

0%

Subtask #3:

score: 0
Skipped

Dependency #1:

0%