結果

問題 No.2854 -1 Subsequence
ユーザー tassei903tassei903
提出日時 2024-08-25 13:37:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 511 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 104,524 KB
最終ジャッジ日時 2024-08-25 13:38:03
合計ジャッジ時間 4,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
101,000 KB
testcase_01 AC 86 ms
101,028 KB
testcase_02 AC 82 ms
101,128 KB
testcase_03 AC 65 ms
88,384 KB
testcase_04 AC 91 ms
104,524 KB
testcase_05 AC 73 ms
92,800 KB
testcase_06 AC 57 ms
81,244 KB
testcase_07 AC 90 ms
104,232 KB
testcase_08 AC 47 ms
67,852 KB
testcase_09 AC 78 ms
94,764 KB
testcase_10 AC 102 ms
102,344 KB
testcase_11 AC 100 ms
102,364 KB
testcase_12 AC 100 ms
102,156 KB
testcase_13 AC 103 ms
102,092 KB
testcase_14 AC 103 ms
102,200 KB
testcase_15 AC 103 ms
102,528 KB
testcase_16 AC 104 ms
102,388 KB
testcase_17 AC 102 ms
102,212 KB
testcase_18 AC 101 ms
102,120 KB
testcase_19 AC 101 ms
102,360 KB
testcase_20 AC 100 ms
101,956 KB
testcase_21 AC 100 ms
101,888 KB
testcase_22 AC 105 ms
100,408 KB
testcase_23 AC 36 ms
52,836 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 36 ms
52,068 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 35 ms
52,912 KB
testcase_31 WA -
testcase_32 AC 36 ms
52,072 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 34 ms
52,284 KB
testcase_36 AC 33 ms
53,812 KB
testcase_37 WA -
testcase_38 AC 37 ms
52,636 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n = ni()
a = na()

inf = 10**18
dp = [-inf, -inf]
dp[0] = 0

for i in range(n):
    dp = [max(dp[0], dp[1] + a[i]), max(dp[0] - a[i], dp[1])]

print(max(dp))
0