結果

問題 No.198 キャンディー・ボックス2
ユーザー ntudantuda
提出日時 2024-05-27 19:21:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 504 bytes
コンパイル時間 659 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 57,548 KB
最終ジャッジ日時 2024-05-27 19:21:30
合計ジャッジ時間 3,690 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
56,960 KB
testcase_01 AC 44 ms
57,088 KB
testcase_02 AC 41 ms
52,608 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 40 ms
52,132 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 43 ms
52,352 KB
testcase_09 AC 41 ms
52,608 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 40 ms
52,440 KB
testcase_12 AC 40 ms
52,096 KB
testcase_13 AC 41 ms
52,352 KB
testcase_14 AC 39 ms
52,588 KB
testcase_15 AC 40 ms
52,352 KB
testcase_16 AC 46 ms
52,480 KB
testcase_17 AC 44 ms
52,352 KB
testcase_18 AC 43 ms
52,352 KB
testcase_19 WA -
testcase_20 AC 41 ms
52,352 KB
testcase_21 WA -
testcase_22 AC 42 ms
52,596 KB
testcase_23 WA -
testcase_24 AC 44 ms
57,216 KB
testcase_25 WA -
testcase_26 AC 43 ms
56,704 KB
testcase_27 AC 44 ms
56,960 KB
testcase_28 WA -
testcase_29 AC 44 ms
56,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

B = int(input())
N = int(input())
C = [int(input()) for _ in range(N)]


def calc(x):
    tmp = 0
    for i in range(N):
        tmp += abs(C[i] - x)
    return tmp

lb = 0
ub = 10 ** 10 + 10
while ub - lb > 1:
    mid1 = 2 *lb / 3 + ub / 3
    mid2 = lb / 3 + 2 * ub / 3
    if calc(mid1) < calc(mid2):
        ub = mid2
    else:
        lb = mid1

ans = 10 ** 10 + 10
for j in range(int(lb),int(lb)+2):
    tmp = 0
    for i in range(N):
        tmp += abs(C[i] - j)
    ans = min(ans,tmp)
print(ans)
0