結果

問題 No.999 てん vs. ほむ
ユーザー flippergoflippergo
提出日時 2024-11-05 08:17:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 108,212 KB
最終ジャッジ日時 2024-11-05 08:17:59
合計ジャッジ時間 4,121 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,360 KB
testcase_01 AC 37 ms
52,016 KB
testcase_02 AC 36 ms
52,212 KB
testcase_03 AC 36 ms
52,280 KB
testcase_04 AC 36 ms
52,988 KB
testcase_05 AC 36 ms
53,040 KB
testcase_06 AC 36 ms
52,548 KB
testcase_07 AC 36 ms
53,156 KB
testcase_08 AC 45 ms
62,236 KB
testcase_09 AC 92 ms
104,676 KB
testcase_10 AC 56 ms
74,268 KB
testcase_11 AC 52 ms
69,644 KB
testcase_12 AC 62 ms
80,460 KB
testcase_13 AC 106 ms
102,840 KB
testcase_14 AC 102 ms
102,676 KB
testcase_15 AC 104 ms
103,524 KB
testcase_16 AC 98 ms
102,084 KB
testcase_17 AC 79 ms
101,372 KB
testcase_18 AC 79 ms
101,344 KB
testcase_19 AC 79 ms
101,004 KB
testcase_20 AC 79 ms
100,828 KB
testcase_21 AC 97 ms
101,720 KB
testcase_22 AC 89 ms
108,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
B = [0]*N
B[0] = A[0]-A[1]
for i in range(1,N):
    B[i] = B[i-1]+A[2*i]-A[2*i+1]
ans = max(-B[N-1],B[N-1])
for i in range(N):
    cnt = 2*B[i-1]-B[N-1]
    ans = max(ans,cnt)
print(ans)
0