結果

問題 No.2854 -1 Subsequence
ユーザー ryuusagiryuusagi
提出日時 2024-08-25 14:03:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 133 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 114,228 KB
最終ジャッジ日時 2024-08-25 14:03:31
合計ジャッジ時間 4,530 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
103,076 KB
testcase_01 AC 85 ms
101,952 KB
testcase_02 AC 86 ms
101,828 KB
testcase_03 AC 64 ms
84,208 KB
testcase_04 AC 87 ms
107,848 KB
testcase_05 AC 74 ms
90,096 KB
testcase_06 AC 59 ms
76,636 KB
testcase_07 AC 88 ms
106,388 KB
testcase_08 AC 44 ms
66,168 KB
testcase_09 AC 73 ms
92,640 KB
testcase_10 AC 94 ms
112,636 KB
testcase_11 AC 91 ms
113,200 KB
testcase_12 AC 95 ms
112,940 KB
testcase_13 AC 98 ms
113,324 KB
testcase_14 AC 98 ms
113,616 KB
testcase_15 AC 96 ms
112,480 KB
testcase_16 AC 93 ms
112,812 KB
testcase_17 AC 93 ms
112,276 KB
testcase_18 AC 91 ms
112,580 KB
testcase_19 AC 106 ms
113,948 KB
testcase_20 AC 91 ms
113,020 KB
testcase_21 AC 90 ms
113,064 KB
testcase_22 AC 101 ms
114,228 KB
testcase_23 AC 36 ms
52,796 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 35 ms
52,616 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 36 ms
52,264 KB
testcase_31 WA -
testcase_32 AC 34 ms
53,008 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 33 ms
53,840 KB
testcase_36 AC 33 ms
52,620 KB
testcase_37 WA -
testcase_38 AC 33 ms
53,524 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, *a = map(int, open(0).read().split())
b, c = 0, -float('inf')
for i in a:
    b, c = max(b, c + i), max(c, b - i)
print(max(b, c))
0