結果

問題 No.2854 -1 Subsequence
ユーザー nmoonnmoon
提出日時 2024-09-09 20:58:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 190 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 126,736 KB
最終ジャッジ日時 2024-09-09 20:58:51
合計ジャッジ時間 5,907 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 86 ms
100,764 KB
testcase_02 WA -
testcase_03 AC 65 ms
95,584 KB
testcase_04 WA -
testcase_05 AC 74 ms
104,828 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 113 ms
125,960 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 111 ms
125,944 KB
testcase_14 WA -
testcase_15 AC 112 ms
126,224 KB
testcase_16 WA -
testcase_17 AC 115 ms
126,328 KB
testcase_18 WA -
testcase_19 AC 113 ms
126,608 KB
testcase_20 AC 113 ms
126,096 KB
testcase_21 WA -
testcase_22 AC 116 ms
126,224 KB
testcase_23 AC 32 ms
53,012 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 35 ms
52,052 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 33 ms
52,496 KB
testcase_31 WA -
testcase_32 AC 33 ms
53,212 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 32 ms
52,756 KB
testcase_36 AC 32 ms
52,696 KB
testcase_37 WA -
testcase_38 AC 32 ms
52,316 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
dp0=[0]
dp1=[0]
for i in range(n):
  dp0.append(max(dp0[-1],dp1[-1]-a[i]))
  dp1.append(max(dp1[-1],dp0[-1]+a[i]))
print(max(dp0[-1],dp1[-1]))
0