結果

問題 No.999 てん vs. ほむ
ユーザー convexineqconvexineq
提出日時 2021-02-13 20:39:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 107,264 KB
最終ジャッジ日時 2024-07-21 00:28:51
合計ジャッジ時間 3,611 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 44 ms
62,208 KB
testcase_09 AC 101 ms
102,912 KB
testcase_10 AC 57 ms
76,032 KB
testcase_11 AC 53 ms
70,400 KB
testcase_12 AC 64 ms
83,584 KB
testcase_13 AC 106 ms
104,448 KB
testcase_14 AC 108 ms
104,320 KB
testcase_15 AC 108 ms
104,324 KB
testcase_16 AC 106 ms
104,444 KB
testcase_17 AC 89 ms
107,264 KB
testcase_18 AC 89 ms
107,136 KB
testcase_19 AC 89 ms
107,220 KB
testcase_20 AC 89 ms
106,880 KB
testcase_21 AC 104 ms
104,044 KB
testcase_22 AC 102 ms
103,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
res = [0]*(n+1)
for i in range(n):
    res[i] = a[2*i]-a[2*i+1]
t = sum(res)
for i in range(n)[::-1]:
    res[i] += res[i+1]
ans = -1<<31
for i in range(n+1):
    ans = max(ans,t-2*res[i])
print(ans)
0