結果

問題 No.2854 -1 Subsequence
ユーザー nmoonnmoon
提出日時 2024-09-09 21:13:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 219 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 126,748 KB
最終ジャッジ日時 2024-09-09 21:13:55
合計ジャッジ時間 4,829 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 92 ms
100,788 KB
testcase_02 WA -
testcase_03 AC 68 ms
96,044 KB
testcase_04 WA -
testcase_05 AC 75 ms
104,992 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 112 ms
126,072 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 109 ms
126,344 KB
testcase_14 WA -
testcase_15 AC 113 ms
126,356 KB
testcase_16 WA -
testcase_17 AC 119 ms
126,244 KB
testcase_18 WA -
testcase_19 AC 112 ms
126,260 KB
testcase_20 AC 109 ms
125,988 KB
testcase_21 WA -
testcase_22 AC 114 ms
126,256 KB
testcase_23 AC 30 ms
52,240 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 33 ms
52,248 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 32 ms
52,504 KB
testcase_31 WA -
testcase_32 AC 30 ms
53,148 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 31 ms
52,344 KB
testcase_36 AC 31 ms
51,816 KB
testcase_37 WA -
testcase_38 AC 31 ms
52,244 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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