結果

問題 No.198 キャンディー・ボックス2
ユーザー FromBooskaFromBooska
提出日時 2023-04-21 11:42:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 876 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-11-06 07:56:47
合計ジャッジ時間 2,596 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,852 KB
testcase_01 AC 39 ms
52,624 KB
testcase_02 AC 38 ms
53,024 KB
testcase_03 AC 38 ms
52,196 KB
testcase_04 AC 39 ms
52,196 KB
testcase_05 AC 39 ms
52,804 KB
testcase_06 AC 38 ms
53,804 KB
testcase_07 AC 38 ms
52,772 KB
testcase_08 AC 38 ms
53,604 KB
testcase_09 AC 38 ms
53,068 KB
testcase_10 AC 38 ms
52,756 KB
testcase_11 AC 39 ms
52,888 KB
testcase_12 AC 38 ms
54,292 KB
testcase_13 AC 38 ms
53,812 KB
testcase_14 AC 37 ms
53,480 KB
testcase_15 AC 37 ms
52,868 KB
testcase_16 AC 38 ms
52,888 KB
testcase_17 AC 38 ms
52,124 KB
testcase_18 AC 38 ms
52,820 KB
testcase_19 WA -
testcase_20 AC 38 ms
52,888 KB
testcase_21 WA -
testcase_22 AC 38 ms
52,656 KB
testcase_23 WA -
testcase_24 AC 37 ms
52,444 KB
testcase_25 WA -
testcase_26 AC 39 ms
53,828 KB
testcase_27 AC 38 ms
53,256 KB
testcase_28 WA -
testcase_29 AC 38 ms
54,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# medianにすればいいか

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

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








0