結果

問題 No.999 てん vs. ほむ
ユーザー KazunKazun
提出日時 2020-10-14 04:43:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 108,416 KB
最終ジャッジ日時 2024-07-20 18:59:12
合計ジャッジ時間 3,488 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,584 KB
testcase_01 AC 35 ms
51,456 KB
testcase_02 AC 35 ms
51,456 KB
testcase_03 AC 49 ms
51,968 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 34 ms
51,840 KB
testcase_06 AC 42 ms
51,456 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 47 ms
60,672 KB
testcase_09 AC 99 ms
105,472 KB
testcase_10 AC 59 ms
72,576 KB
testcase_11 AC 53 ms
67,968 KB
testcase_12 AC 62 ms
79,104 KB
testcase_13 AC 99 ms
101,888 KB
testcase_14 AC 98 ms
102,016 KB
testcase_15 AC 98 ms
102,016 KB
testcase_16 AC 101 ms
101,760 KB
testcase_17 AC 83 ms
98,432 KB
testcase_18 AC 80 ms
99,072 KB
testcase_19 AC 79 ms
98,432 KB
testcase_20 AC 81 ms
99,840 KB
testcase_21 AC 98 ms
101,632 KB
testcase_22 AC 95 ms
108,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

A=list(map(int,input().split()))
M=sum(A[1::2])-sum(A[::2])
B=M

for i in range(N):
    M+=2*(A[2*i]-A[2*i+1])

    if B<M:
        B=M
print(B)
0