結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー YKiyofujiYKiyofuji
提出日時 2019-11-27 00:00:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,272 ms / 5,000 ms
コード長 469 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,696 KB
最終ジャッジ日時 2024-11-08 13:08:13
合計ジャッジ時間 56,729 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,883 ms
32,696 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 1,245 ms
18,912 KB
testcase_03 AC 2,366 ms
26,584 KB
testcase_04 AC 2,629 ms
29,360 KB
testcase_05 AC 2,611 ms
29,236 KB
testcase_06 AC 2,303 ms
29,228 KB
testcase_07 AC 3,270 ms
32,540 KB
testcase_08 AC 3,272 ms
32,536 KB
testcase_09 AC 2,775 ms
32,536 KB
testcase_10 AC 2,401 ms
27,504 KB
testcase_11 AC 2,545 ms
28,424 KB
testcase_12 AC 2,016 ms
26,972 KB
testcase_13 AC 2,985 ms
31,028 KB
testcase_14 AC 3,109 ms
31,812 KB
testcase_15 AC 2,400 ms
29,404 KB
testcase_16 AC 1,859 ms
29,236 KB
testcase_17 AC 1,780 ms
29,224 KB
testcase_18 AC 1,751 ms
29,232 KB
testcase_19 AC 1,718 ms
32,532 KB
testcase_20 AC 1,675 ms
32,536 KB
testcase_21 AC 1,665 ms
32,668 KB
testcase_22 AC 1,571 ms
27,536 KB
testcase_23 AC 1,677 ms
28,424 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 100 ms
11,136 KB
testcase_26 AC 56 ms
10,880 KB
testcase_27 AC 48 ms
10,624 KB
testcase_28 AC 561 ms
14,224 KB
testcase_29 AC 307 ms
12,416 KB
testcase_30 AC 102 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    N_ = int(input())
    L_ = list(map(int, input().split()))
    K_ = int(input())
    return N_, L_, K_

def binarySearch(N, L, K):
    left = 0
    right = max(L)
    for x in range(100):
        piv = 0
        mid = (right + left) / 2
        for l in L:
            piv += l // mid
        if piv >= K:
            left = mid
        else:
            right = mid
    return (right + left) / 2

N, L, K = read_data()
print(binarySearch(N, L, K))
0