結果

問題 No.2854 -1 Subsequence
ユーザー H20H20
提出日時 2024-11-16 15:36:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 173 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 104,064 KB
最終ジャッジ日時 2024-11-16 15:37:07
合計ジャッジ時間 7,839 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
100,480 KB
testcase_01 AC 97 ms
100,096 KB
testcase_02 AC 95 ms
100,736 KB
testcase_03 AC 76 ms
88,320 KB
testcase_04 AC 98 ms
103,936 KB
testcase_05 AC 82 ms
92,032 KB
testcase_06 AC 64 ms
79,616 KB
testcase_07 AC 95 ms
104,064 KB
testcase_08 AC 50 ms
67,328 KB
testcase_09 AC 85 ms
94,848 KB
testcase_10 AC 112 ms
102,016 KB
testcase_11 AC 109 ms
101,760 KB
testcase_12 AC 118 ms
101,760 KB
testcase_13 AC 106 ms
101,632 KB
testcase_14 AC 111 ms
101,760 KB
testcase_15 AC 109 ms
102,016 KB
testcase_16 AC 107 ms
101,760 KB
testcase_17 AC 105 ms
101,760 KB
testcase_18 AC 109 ms
101,760 KB
testcase_19 AC 113 ms
101,632 KB
testcase_20 AC 106 ms
102,272 KB
testcase_21 AC 105 ms
101,632 KB
testcase_22 AC 111 ms
99,968 KB
testcase_23 AC 38 ms
51,584 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 37 ms
51,456 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 36 ms
51,584 KB
testcase_31 WA -
testcase_32 AC 41 ms
51,712 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 42 ms
51,456 KB
testcase_36 AC 42 ms
51,328 KB
testcase_37 WA -
testcase_38 AC 41 ms
51,584 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split())) 
DP = [0,-10**10]
for i,a in enumerate(A):
    NDP = [max(DP[0],DP[1]+a),max(DP[1],DP[0]-a)]
    DP = NDP
print(max(DP))
0