結果

問題 No.837 Noelちゃんと星々2
ユーザー 12354865271235486527
提出日時 2020-01-15 19:32:40
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,544 KB
最終ジャッジ日時 2024-06-11 14:27:46
合計ジャッジ時間 4,195 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(start, end):
    med = (end-start) // 2 + start
    if (end-start) & 1:
        return cum_Y[end] - cum_Y[med] - (cum_Y[med+1] - cum_Y[start])
    else:
        return cum_Y[end] - cum_Y[med] - (cum_Y[med] - cum_Y[start])
N = int(input())
Y = sorted(map(int, input().split()))
if Y[0] == Y[-1]:
    print(1)
else:
    cum_Y = [0]
    for y in Y:
        cum_Y.append(cum_Y[-1] + y)
    ans = float('inf')
    for i in range(1, N):
        left = f(0, i)
        right = f(i, N)
        ans = min(ans, left + right)
    print(ans)
0