結果

問題 No.999 てん vs. ほむ
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-04-05 21:51:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 108,544 KB
最終ジャッジ日時 2024-05-05 10:13:24
合計ジャッジ時間 3,965 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 35 ms
52,008 KB
testcase_02 AC 35 ms
51,924 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 AC 37 ms
51,456 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 45 ms
61,056 KB
testcase_09 AC 91 ms
105,780 KB
testcase_10 AC 57 ms
73,884 KB
testcase_11 AC 51 ms
68,992 KB
testcase_12 AC 61 ms
79,232 KB
testcase_13 AC 101 ms
101,892 KB
testcase_14 AC 98 ms
101,912 KB
testcase_15 AC 101 ms
101,888 KB
testcase_16 AC 99 ms
101,888 KB
testcase_17 AC 81 ms
99,328 KB
testcase_18 AC 81 ms
98,688 KB
testcase_19 AC 83 ms
100,352 KB
testcase_20 AC 80 ms
99,328 KB
testcase_21 AC 99 ms
101,428 KB
testcase_22 AC 93 ms
108,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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