結果

問題 No.837 Noelちゃんと星々2
ユーザー mkawa2mkawa2
提出日時 2019-07-20 10:28:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 389 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 317,672 KB
最終ジャッジ日時 2024-12-29 17:24:51
合計ジャッジ時間 32,732 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 37 ms
53,688 KB
testcase_26 AC 41 ms
52,204 KB
testcase_27 AC 39 ms
52,272 KB
testcase_28 AC 40 ms
51,928 KB
testcase_29 AC 40 ms
52,360 KB
testcase_30 WA -
testcase_31 AC 40 ms
52,996 KB
testcase_32 AC 39 ms
317,672 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