結果

問題 No.837 Noelちゃんと星々2
ユーザー mkawa2mkawa2
提出日時 2019-07-20 10:21:49
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 389 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 35,428 KB
最終ジャッジ日時 2024-12-29 17:24:07
合計ジャッジ時間 32,236 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 33 ms
10,496 KB
testcase_26 AC 32 ms
10,624 KB
testcase_27 AC 31 ms
10,624 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 31 ms
10,624 KB
testcase_30 WA -
testcase_31 AC 32 ms
10,624 KB
testcase_32 AC 33 ms
32,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(m):
    y1 = y[:m]
    y2 = y[m:]
    ym1 = y1[len(y1) // 2]
    ym2 = y2[len(y2) // 2]
    re = 0
    for yk in y1:
        re += abs(ym1 - yk)
    for yk in y2:
        re += abs(ym2 - yk)
    return re
n = int(input())
y = list(map(int, input().split()))
y.sort()
if y[0] == y[-1]:
    print(1)
    exit()
ans=10**9
for m in range(1,n-1):
    ans=min(ans,solve(m))
print(ans)
0