結果

問題 No.999 てん vs. ほむ
ユーザー akanayaakanaya
提出日時 2020-04-03 15:58:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 548 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 104,660 KB
最終ジャッジ日時 2024-07-03 00:50:31
合計ジャッジ時間 4,025 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 41 ms
51,328 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 39 ms
51,328 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 40 ms
51,712 KB
testcase_07 AC 39 ms
52,232 KB
testcase_08 AC 51 ms
63,104 KB
testcase_09 AC 109 ms
102,336 KB
testcase_10 AC 65 ms
76,928 KB
testcase_11 AC 60 ms
71,680 KB
testcase_12 AC 72 ms
83,072 KB
testcase_13 AC 120 ms
104,660 KB
testcase_14 AC 121 ms
104,460 KB
testcase_15 AC 122 ms
104,652 KB
testcase_16 AC 120 ms
104,652 KB
testcase_17 AC 111 ms
100,088 KB
testcase_18 AC 110 ms
99,736 KB
testcase_19 AC 112 ms
99,944 KB
testcase_20 AC 111 ms
100,320 KB
testcase_21 AC 120 ms
104,332 KB
testcase_22 AC 119 ms
103,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a2n = list(map(int, input().split(' ')))

fromL = [None] * n
for i in range(n):
    fromL[i] = a2n[2 * i] - a2n[2 * i + 1]

fromR = [None] * n
a2nd = a2n[::-1]
for i in range(n):
    fromR[i] = a2nd[2 * i] - a2nd[2 * i + 1]

cumL = [None] * (n + 1)
cumL[0] = 0
for i in range(n):
    cumL[i + 1] = cumL[i] + fromL[i]

cumR = [None] * (n + 1)
cumR[0] = 0
for i in range(n):
    cumR[i + 1] = cumR[i] + fromR[i]


results = [None] * (n + 1)
for i in range(n + 1):
   results[i] = cumR[i]+ cumL[n - i]

print(max(results))



0