結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 89 ms
101,148 KB
testcase_02 WA -
testcase_03 AC 67 ms
94,968 KB
testcase_04 WA -
testcase_05 AC 74 ms
105,756 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 119 ms
126,108 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 112 ms
126,352 KB
testcase_14 WA -
testcase_15 AC 114 ms
126,080 KB
testcase_16 WA -
testcase_17 AC 114 ms
126,104 KB
testcase_18 WA -
testcase_19 AC 115 ms
125,956 KB
testcase_20 AC 112 ms
126,356 KB
testcase_21 WA -
testcase_22 AC 118 ms
126,388 KB
testcase_23 AC 32 ms
52,316 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 32 ms
52,000 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 35 ms
52,124 KB
testcase_31 WA -
testcase_32 AC 33 ms
51,908 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 34 ms
53,076 KB
testcase_36 AC 32 ms
52,356 KB
testcase_37 WA -
testcase_38 AC 32 ms
52,480 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],-a[i]))
  dp1.append(max(dp1[-1],dp0[-1]+a[i],a[i]))
print(max(0,dp0[-1],dp1[-1]))
0