結果

問題 No.2854 -1 Subsequence
ユーザー 👑 rin204rin204
提出日時 2024-08-25 14:59:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 170 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 104,572 KB
最終ジャッジ日時 2024-08-25 14:59:49
合計ジャッジ時間 4,721 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
99,188 KB
testcase_01 AC 79 ms
98,484 KB
testcase_02 AC 78 ms
99,292 KB
testcase_03 AC 59 ms
81,044 KB
testcase_04 AC 91 ms
104,572 KB
testcase_05 AC 67 ms
89,148 KB
testcase_06 AC 56 ms
76,756 KB
testcase_07 AC 87 ms
104,552 KB
testcase_08 AC 47 ms
65,492 KB
testcase_09 AC 71 ms
90,788 KB
testcase_10 AC 98 ms
102,124 KB
testcase_11 AC 99 ms
102,348 KB
testcase_12 AC 100 ms
102,196 KB
testcase_13 AC 97 ms
102,116 KB
testcase_14 AC 100 ms
102,080 KB
testcase_15 AC 99 ms
102,184 KB
testcase_16 AC 101 ms
102,324 KB
testcase_17 AC 98 ms
102,300 KB
testcase_18 AC 99 ms
102,068 KB
testcase_19 AC 103 ms
102,116 KB
testcase_20 AC 96 ms
102,424 KB
testcase_21 AC 96 ms
101,840 KB
testcase_22 AC 101 ms
100,664 KB
testcase_23 AC 34 ms
52,744 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 35 ms
52,644 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 35 ms
52,452 KB
testcase_31 WA -
testcase_32 AC 34 ms
52,348 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 35 ms
52,612 KB
testcase_36 AC 35 ms
53,360 KB
testcase_37 WA -
testcase_38 AC 35 ms
52,284 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

x = 0
y = -(1 << 60)
for a in A:
    nx = max(x, y + a)
    ny = max(y, x - a)
    x, y = nx, ny


print(max(x, y))
0