結果

問題 No.2854 -1 Subsequence
ユーザー KudeKude
提出日時 2024-08-25 13:38:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 149 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 102,108 KB
最終ジャッジ日時 2024-08-25 13:38:32
合計ジャッジ時間 4,320 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
96,676 KB
testcase_01 AC 83 ms
96,092 KB
testcase_02 AC 85 ms
96,360 KB
testcase_03 AC 60 ms
81,656 KB
testcase_04 AC 89 ms
99,892 KB
testcase_05 AC 74 ms
89,664 KB
testcase_06 AC 56 ms
76,424 KB
testcase_07 AC 88 ms
99,220 KB
testcase_08 AC 48 ms
67,076 KB
testcase_09 AC 76 ms
91,432 KB
testcase_10 AC 95 ms
101,364 KB
testcase_11 AC 92 ms
100,984 KB
testcase_12 AC 92 ms
101,440 KB
testcase_13 AC 93 ms
101,488 KB
testcase_14 AC 93 ms
101,836 KB
testcase_15 AC 95 ms
101,304 KB
testcase_16 AC 93 ms
101,824 KB
testcase_17 AC 92 ms
100,784 KB
testcase_18 AC 92 ms
100,948 KB
testcase_19 AC 93 ms
101,676 KB
testcase_20 AC 91 ms
99,840 KB
testcase_21 AC 92 ms
102,108 KB
testcase_22 AC 94 ms
100,260 KB
testcase_23 AC 36 ms
53,608 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 37 ms
52,576 KB
testcase_27 WA -
testcase_28 AC 36 ms
52,116 KB
testcase_29 WA -
testcase_30 AC 36 ms
53,296 KB
testcase_31 AC 36 ms
52,708 KB
testcase_32 AC 36 ms
52,756 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 37 ms
52,608 KB
testcase_36 AC 36 ms
52,824 KB
testcase_37 WA -
testcase_38 AC 36 ms
52,880 KB
testcase_39 AC 36 ms
52,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
dp = [-10**9, -10**9]
for a in map(int, input().split()):
    dp = [max(dp[0], dp[1] + a), max(dp[1], dp[0] - a, -a)]
print(max(dp))
0