結果

問題 No.837 Noelちゃんと星々2
ユーザー brthyyjpbrthyyjp
提出日時 2020-08-27 05:40:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 115,456 KB
最終ジャッジ日時 2024-06-11 14:29:49
合計ジャッジ時間 3,448 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
115,200 KB
testcase_01 AC 128 ms
115,328 KB
testcase_02 AC 131 ms
114,944 KB
testcase_03 AC 126 ms
115,200 KB
testcase_04 AC 128 ms
115,200 KB
testcase_05 AC 128 ms
115,200 KB
testcase_06 AC 128 ms
115,456 KB
testcase_07 AC 128 ms
114,944 KB
testcase_08 AC 129 ms
114,976 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 38 ms
52,124 KB
testcase_11 AC 37 ms
52,608 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 36 ms
52,224 KB
testcase_14 AC 35 ms
52,352 KB
testcase_15 AC 36 ms
52,352 KB
testcase_16 AC 35 ms
52,096 KB
testcase_17 AC 36 ms
52,224 KB
testcase_18 AC 36 ms
52,224 KB
testcase_19 AC 36 ms
52,096 KB
testcase_20 AC 37 ms
52,068 KB
testcase_21 AC 35 ms
52,608 KB
testcase_22 AC 36 ms
52,352 KB
testcase_23 AC 36 ms
51,840 KB
testcase_24 AC 35 ms
52,480 KB
testcase_25 AC 35 ms
52,096 KB
testcase_26 AC 35 ms
51,968 KB
testcase_27 AC 36 ms
52,224 KB
testcase_28 AC 36 ms
52,224 KB
testcase_29 AC 36 ms
51,712 KB
testcase_30 AC 36 ms
52,096 KB
testcase_31 AC 36 ms
52,224 KB
testcase_32 AC 36 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
Y = list(map(int, input().split()))
Y.sort()

if len(set(Y)) == 1:
    print(1)
    exit()

from itertools import accumulate
C = [0]+Y
C = list(accumulate(C))
#print(C)

ans = 10**18
# 0~i, i+1~n-1
for i in range(n-1):
    temp = 0
    if (i+1)%2 == 1:
        m = i//2
        temp += C[i+1]-C[m+1]-(C[m]-C[0])
    else:
        m = i//2
        temp += C[i+1]-C[m+1]-(C[m+1]-C[0])
    if (n-i-1)%2 == 1:
        m = (n+i)//2
        temp += C[n]-C[m+1]-(C[m]-C[i+1])
    else:
        m = (n+i)//2
        temp += C[n]-C[m+1]-(C[m+1]-C[i+1])
    ans = min(ans, temp)
print(ans)
0