結果

問題 No.198 キャンディー・ボックス2
ユーザー ssmkzkssmkzk
提出日時 2019-06-20 11:57:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 622 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-09 16:07:26
合計ジャッジ時間 1,980 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

B = int(input())
N = int(input())
l = []

for i in range(N):
    l.append(int(input()))
cnady_n = sum(l) + B
box_max_candy = cnady_n // N

n_median = 0
n_median1 = 0
s = set(l)
if len(s) % 2 == 0:
    n_median = len(s) // 2 
    n_median1 = n_median - 1
else:
    n_median = (len(s) -1) // 2
ll = list(s)
ll.sort()
#print(n_median,n_median1)
ck = ll[n_median]
ck1 = ll[n_median1]
#print(ck,ck1)
ans = 0
ans1 = 0
for l_i in l:
    ans += abs(l_i - ck)
    ans1 += abs(l_i - ck1)

if ck > box_max_candy:
    ans = 1000000000000000
if ck1 > box_max_candy:
    ans1 = 10000000000000
print(min(ans,ans1))
#print(box_max_candy)
0