結果

問題 No.2854 -1 Subsequence
ユーザー Basin-BugBasin-Bug
提出日時 2024-08-25 14:02:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 181 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 104,272 KB
最終ジャッジ日時 2024-08-25 14:02:56
合計ジャッジ時間 4,335 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
101,332 KB
testcase_01 AC 84 ms
100,808 KB
testcase_02 AC 86 ms
101,120 KB
testcase_03 AC 68 ms
88,504 KB
testcase_04 AC 89 ms
104,252 KB
testcase_05 AC 72 ms
92,436 KB
testcase_06 AC 58 ms
81,700 KB
testcase_07 AC 89 ms
104,272 KB
testcase_08 AC 48 ms
68,860 KB
testcase_09 AC 74 ms
95,020 KB
testcase_10 AC 100 ms
102,440 KB
testcase_11 AC 100 ms
102,248 KB
testcase_12 AC 98 ms
102,372 KB
testcase_13 AC 96 ms
102,108 KB
testcase_14 AC 97 ms
102,228 KB
testcase_15 AC 104 ms
102,536 KB
testcase_16 AC 95 ms
102,136 KB
testcase_17 AC 97 ms
102,144 KB
testcase_18 AC 97 ms
102,080 KB
testcase_19 AC 96 ms
102,048 KB
testcase_20 AC 96 ms
102,748 KB
testcase_21 AC 97 ms
102,076 KB
testcase_22 AC 102 ms
100,576 KB
testcase_23 AC 34 ms
52,824 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 35 ms
52,484 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 33 ms
52,428 KB
testcase_31 WA -
testcase_32 AC 35 ms
51,696 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 34 ms
51,936 KB
testcase_36 AC 33 ms
52,132 KB
testcase_37 WA -
testcase_38 AC 36 ms
53,220 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0, -10 ** 18]

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

print(max(dp))
0