結果

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

テストケース

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

ソースコード

diff #

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

C.sort()
C.reverse()
C_sum=sum(C)
ave=int(C_sum/N)

sum_min=0xFFFFFFFF
# min_index=0
for i in range(ave-1,ave+2):
    tmp_sum=0
    for j in range(N):
        tmp_sum+=abs(C[j]-i)
    if tmp_sum<sum_min:
        sum_min=tmp_sum
        # min_index=i
    # print(i,ave,tmp_sum,sum_min)
print(int(sum_min))
0