結果

問題 No.198 キャンディー・ボックス2
ユーザー FromBooskaFromBooska
提出日時 2023-04-21 11:59:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 1,000 ms
コード長 902 bytes
コンパイル時間 688 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 54,008 KB
最終ジャッジ日時 2024-11-06 08:10:49
合計ジャッジ時間 2,482 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,980 KB
testcase_01 AC 39 ms
53,112 KB
testcase_02 AC 40 ms
54,008 KB
testcase_03 AC 39 ms
53,080 KB
testcase_04 AC 39 ms
52,868 KB
testcase_05 AC 38 ms
52,600 KB
testcase_06 AC 39 ms
52,720 KB
testcase_07 AC 39 ms
53,204 KB
testcase_08 AC 39 ms
53,480 KB
testcase_09 AC 38 ms
53,332 KB
testcase_10 AC 39 ms
53,268 KB
testcase_11 AC 40 ms
52,396 KB
testcase_12 AC 39 ms
53,864 KB
testcase_13 AC 39 ms
53,192 KB
testcase_14 AC 39 ms
52,944 KB
testcase_15 AC 39 ms
52,600 KB
testcase_16 AC 40 ms
52,996 KB
testcase_17 AC 40 ms
52,996 KB
testcase_18 AC 40 ms
53,752 KB
testcase_19 AC 41 ms
52,560 KB
testcase_20 AC 40 ms
52,712 KB
testcase_21 AC 41 ms
53,104 KB
testcase_22 AC 40 ms
53,012 KB
testcase_23 AC 41 ms
53,612 KB
testcase_24 AC 40 ms
52,880 KB
testcase_25 AC 39 ms
53,496 KB
testcase_26 AC 39 ms
53,872 KB
testcase_27 AC 39 ms
52,732 KB
testcase_28 AC 40 ms
53,400 KB
testcase_29 AC 39 ms
53,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# medianにすればいいか
# WA出た
# median総数に足りない場合はmedianを下げる必要があるな

B = int(input())
N = int(input())
C = []
for i in range(N):
    C.append(int(input()))
C.sort()
sumC = sum(C)

from math import floor, ceil
if N%2 == 1:
    median = C[N//2]
    median = min(median, floor((sumC+B)/N))
    ans = 0
    for i in range(N):
        ans += abs(C[i]-median)
    #print(median, ans)
else:
    median_low = floor((C[N//2-1]+C[N//2])/2)
    median_low = min(median_low, floor((sumC+B)/N)) 
    ans_low = 0
    for i in range(N):
        ans_low += abs(C[i]-median_low)
    #print(median_low, ans_low)
    median_high = ceil((C[N//2-1]+C[N//2])/2)
    median_high = min(median_high, floor((sumC+B)/N)) 
    ans_high = 0
    for i in range(N):
        ans_high += abs(C[i]-median_high)
    #print(median_high, ans_high)
    ans = min(ans_low, ans_high)
print(ans)
0