結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
99,144 KB
testcase_01 AC 80 ms
99,284 KB
testcase_02 AC 82 ms
99,128 KB
testcase_03 AC 64 ms
81,636 KB
testcase_04 AC 90 ms
104,516 KB
testcase_05 AC 69 ms
87,736 KB
testcase_06 AC 56 ms
75,136 KB
testcase_07 AC 110 ms
104,348 KB
testcase_08 AC 44 ms
66,208 KB
testcase_09 AC 71 ms
90,928 KB
testcase_10 AC 100 ms
102,116 KB
testcase_11 AC 100 ms
102,520 KB
testcase_12 AC 97 ms
102,344 KB
testcase_13 AC 97 ms
102,140 KB
testcase_14 AC 97 ms
102,420 KB
testcase_15 AC 95 ms
102,244 KB
testcase_16 AC 96 ms
102,080 KB
testcase_17 AC 97 ms
102,468 KB
testcase_18 AC 105 ms
102,124 KB
testcase_19 AC 99 ms
102,184 KB
testcase_20 AC 97 ms
102,584 KB
testcase_21 AC 95 ms
101,996 KB
testcase_22 AC 98 ms
100,800 KB
testcase_23 AC 38 ms
52,932 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 34 ms
52,556 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 34 ms
51,944 KB
testcase_31 WA -
testcase_32 AC 35 ms
53,196 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 36 ms
52,632 KB
testcase_36 AC 36 ms
53,032 KB
testcase_37 WA -
testcase_38 AC 35 ms
52,920 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
left,right=0,-10**20
for i in range(N):
    right=max(left-A[i],right)
    left=max(right+A[i],left)
    #print(right,left)
print(max(right,left))
0