結果

問題 No.999 てん vs. ほむ
ユーザー vwxyzvwxyz
提出日時 2024-05-03 07:34:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,648 KB
最終ジャッジ日時 2024-05-03 07:35:04
合計ジャッジ時間 3,941 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 34 ms
11,392 KB
testcase_09 AC 203 ms
30,612 KB
testcase_10 AC 81 ms
16,608 KB
testcase_11 AC 63 ms
14,608 KB
testcase_12 AC 103 ms
19,556 KB
testcase_13 AC 220 ms
32,648 KB
testcase_14 AC 247 ms
32,524 KB
testcase_15 AC 216 ms
32,648 KB
testcase_16 AC 222 ms
32,644 KB
testcase_17 AC 187 ms
29,040 KB
testcase_18 AC 184 ms
28,936 KB
testcase_19 AC 211 ms
29,076 KB
testcase_20 AC 189 ms
29,140 KB
testcase_21 AC 184 ms
32,516 KB
testcase_22 AC 179 ms
31,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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