結果

問題 No.2854 -1 Subsequence
ユーザー Basin-BugBasin-Bug
提出日時 2024-08-25 14:06:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 104,820 KB
最終ジャッジ日時 2024-08-25 14:06:27
合計ジャッジ時間 4,494 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
101,116 KB
testcase_01 AC 84 ms
100,600 KB
testcase_02 AC 82 ms
101,572 KB
testcase_03 AC 66 ms
88,520 KB
testcase_04 AC 87 ms
104,820 KB
testcase_05 AC 84 ms
92,496 KB
testcase_06 AC 57 ms
80,948 KB
testcase_07 AC 87 ms
104,088 KB
testcase_08 AC 46 ms
68,472 KB
testcase_09 AC 76 ms
95,236 KB
testcase_10 AC 98 ms
102,432 KB
testcase_11 AC 101 ms
102,432 KB
testcase_12 AC 99 ms
102,128 KB
testcase_13 AC 98 ms
102,320 KB
testcase_14 AC 98 ms
102,396 KB
testcase_15 AC 100 ms
102,532 KB
testcase_16 AC 98 ms
102,512 KB
testcase_17 AC 108 ms
102,008 KB
testcase_18 AC 96 ms
102,284 KB
testcase_19 AC 99 ms
102,076 KB
testcase_20 AC 94 ms
102,308 KB
testcase_21 AC 95 ms
101,868 KB
testcase_22 AC 101 ms
100,144 KB
testcase_23 AC 34 ms
52,372 KB
testcase_24 AC 35 ms
52,212 KB
testcase_25 AC 34 ms
51,748 KB
testcase_26 AC 38 ms
52,876 KB
testcase_27 AC 35 ms
52,580 KB
testcase_28 AC 34 ms
53,676 KB
testcase_29 AC 33 ms
52,484 KB
testcase_30 AC 35 ms
52,504 KB
testcase_31 AC 34 ms
51,692 KB
testcase_32 AC 33 ms
52,520 KB
testcase_33 AC 35 ms
52,676 KB
testcase_34 AC 35 ms
52,572 KB
testcase_35 AC 39 ms
53,368 KB
testcase_36 AC 34 ms
53,472 KB
testcase_37 AC 35 ms
52,136 KB
testcase_38 AC 33 ms
52,028 KB
testcase_39 AC 35 ms
53,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

if N == 1:
  print(-A[0])
  exit()

dp = [0, -A[0]]

for i in range(1, N):
  ndp = [max(dp[1] + A[i], dp[0]), max(dp[0] - A[i], dp[1])]
  dp = ndp

print(max(dp))
0