結果

問題 No.2854 -1 Subsequence
ユーザー anonymouslyanonymously
提出日時 2024-08-25 14:23:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 228 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,988 KB
最終ジャッジ日時 2024-08-25 14:24:09
合計ジャッジ時間 11,177 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 358 ms
36,504 KB
testcase_02 WA -
testcase_03 AC 199 ms
25,328 KB
testcase_04 WA -
testcase_05 AC 254 ms
29,636 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 468 ms
44,688 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 451 ms
44,480 KB
testcase_14 WA -
testcase_15 AC 449 ms
44,740 KB
testcase_16 WA -
testcase_17 AC 435 ms
44,736 KB
testcase_18 WA -
testcase_19 AC 467 ms
44,524 KB
testcase_20 AC 422 ms
44,344 KB
testcase_21 WA -
testcase_22 AC 460 ms
41,128 KB
testcase_23 AC 27 ms
10,880 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 27 ms
10,752 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 27 ms
10,880 KB
testcase_31 WA -
testcase_32 AC 28 ms
10,752 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 27 ms
10,752 KB
testcase_36 AC 27 ms
10,624 KB
testcase_37 WA -
testcase_38 AC 29 ms
10,752 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
S = [[0, 0]]
for i in range(N):
    S.append([0, 0])
    S[i + 1][0] = max(S[i][0], S[i][1] + A[i])
    S[i + 1][1] = max(S[i][1], S[i][0] - A[i])
print(max(S[N][0], S[N][1]))
0