結果

問題 No.2854 -1 Subsequence
ユーザー PNJPNJ
提出日時 2024-09-03 19:17:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 142 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 104,936 KB
最終ジャッジ日時 2024-09-03 19:17:27
合計ジャッジ時間 7,197 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
99,460 KB
testcase_01 AC 80 ms
98,868 KB
testcase_02 AC 81 ms
99,096 KB
testcase_03 AC 63 ms
81,128 KB
testcase_04 AC 89 ms
104,936 KB
testcase_05 AC 69 ms
88,004 KB
testcase_06 AC 56 ms
75,868 KB
testcase_07 AC 88 ms
104,216 KB
testcase_08 AC 46 ms
65,292 KB
testcase_09 AC 72 ms
92,020 KB
testcase_10 AC 99 ms
102,136 KB
testcase_11 AC 101 ms
102,156 KB
testcase_12 AC 100 ms
102,068 KB
testcase_13 AC 101 ms
102,476 KB
testcase_14 AC 100 ms
102,132 KB
testcase_15 AC 101 ms
102,292 KB
testcase_16 AC 101 ms
102,272 KB
testcase_17 AC 101 ms
102,248 KB
testcase_18 AC 100 ms
102,404 KB
testcase_19 AC 101 ms
102,288 KB
testcase_20 AC 100 ms
102,404 KB
testcase_21 AC 98 ms
101,832 KB
testcase_22 AC 104 ms
100,396 KB
testcase_23 AC 38 ms
53,056 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 36 ms
53,296 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 37 ms
51,828 KB
testcase_31 WA -
testcase_32 AC 36 ms
52,692 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 36 ms
52,388 KB
testcase_36 AC 36 ms
52,556 KB
testcase_37 WA -
testcase_38 AC 36 ms
51,756 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
a,b = -A[0],0
for i in range(1,N):
  a,b = max(a,b - A[i]),max(b,a + A[i])
print(max(a,b))
0