結果

問題 No.2854 -1 Subsequence
ユーザー KudeKude
提出日時 2024-08-25 13:39:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 153 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 101,852 KB
最終ジャッジ日時 2024-08-25 13:39:11
合計ジャッジ時間 4,390 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
97,140 KB
testcase_01 AC 83 ms
95,976 KB
testcase_02 AC 84 ms
96,664 KB
testcase_03 AC 61 ms
81,324 KB
testcase_04 AC 88 ms
99,572 KB
testcase_05 AC 73 ms
90,188 KB
testcase_06 AC 56 ms
75,960 KB
testcase_07 AC 88 ms
98,948 KB
testcase_08 AC 48 ms
66,372 KB
testcase_09 AC 76 ms
91,956 KB
testcase_10 AC 94 ms
100,964 KB
testcase_11 AC 94 ms
100,976 KB
testcase_12 AC 93 ms
101,068 KB
testcase_13 AC 93 ms
101,300 KB
testcase_14 AC 93 ms
101,072 KB
testcase_15 AC 93 ms
101,096 KB
testcase_16 AC 94 ms
101,160 KB
testcase_17 AC 93 ms
101,004 KB
testcase_18 AC 95 ms
101,288 KB
testcase_19 AC 95 ms
101,340 KB
testcase_20 AC 92 ms
99,912 KB
testcase_21 AC 91 ms
101,852 KB
testcase_22 AC 96 ms
100,144 KB
testcase_23 AC 36 ms
52,264 KB
testcase_24 AC 37 ms
52,512 KB
testcase_25 AC 38 ms
53,312 KB
testcase_26 AC 38 ms
52,204 KB
testcase_27 AC 36 ms
53,404 KB
testcase_28 AC 37 ms
52,216 KB
testcase_29 AC 40 ms
52,072 KB
testcase_30 AC 36 ms
51,984 KB
testcase_31 AC 37 ms
52,440 KB
testcase_32 AC 36 ms
52,624 KB
testcase_33 AC 37 ms
52,836 KB
testcase_34 AC 36 ms
53,296 KB
testcase_35 AC 35 ms
52,676 KB
testcase_36 AC 37 ms
52,556 KB
testcase_37 AC 37 ms
52,508 KB
testcase_38 AC 36 ms
53,244 KB
testcase_39 AC 37 ms
52,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
dp = [-2*10**9, -2*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