QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#555596#8586. Partymohamed_ioi0 9ms10696kbPython3196b2024-09-10 06:02:412024-09-10 06:02:42

Judging History

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

  • [2024-09-10 06:02:42]
  • 评测
  • 测评结果:0
  • 用时:9ms
  • 内存:10696kb
  • [2024-09-10 06:02:41]
  • 提交

answer

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

dp = [0] * n
dp[0] = a[0]
dp[1] = max(a[1], a[0])

for i in range(2, n):
    dp[i] = max(a[i] + dp[i - 2], a[i] + dp[i-1])

print(dp[n - 1])

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 0
Dangerous Syscalls

Test #1:

score: 49
Accepted
time: 9ms
memory: 10696kb

input:

5
3 2 -1 4 5

output:

12

result:

ok single line: '12'

Test #2:

score: 0
Dangerous Syscalls

input:

1
10

output:


result:


Subtask #2:

score: 0
Skipped

Dependency #1:

0%

Subtask #3:

score: 0
Skipped

Dependency #1:

0%