結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 36 ms
11,392 KB
testcase_09 AC 225 ms
30,608 KB
testcase_10 AC 87 ms
16,412 KB
testcase_11 AC 67 ms
14,484 KB
testcase_12 AC 115 ms
19,568 KB
testcase_13 AC 242 ms
32,516 KB
testcase_14 AC 245 ms
32,648 KB
testcase_15 AC 248 ms
32,648 KB
testcase_16 AC 241 ms
32,648 KB
testcase_17 AC 209 ms
28,992 KB
testcase_18 AC 210 ms
28,804 KB
testcase_19 AC 212 ms
28,956 KB
testcase_20 AC 212 ms
29,272 KB
testcase_21 AC 203 ms
32,516 KB
testcase_22 AC 201 ms
31,508 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