結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー YKiyofujiYKiyofuji
提出日時 2019-11-26 23:49:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,256 ms / 5,000 ms
コード長 468 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,668 KB
最終ジャッジ日時 2024-11-08 13:05:36
合計ジャッジ時間 57,498 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,870 ms
32,568 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 1,235 ms
19,036 KB
testcase_03 AC 2,377 ms
26,452 KB
testcase_04 AC 2,648 ms
29,236 KB
testcase_05 AC 2,634 ms
29,364 KB
testcase_06 AC 2,290 ms
29,228 KB
testcase_07 AC 3,237 ms
32,540 KB
testcase_08 AC 3,256 ms
32,660 KB
testcase_09 AC 2,767 ms
32,540 KB
testcase_10 AC 2,370 ms
27,520 KB
testcase_11 AC 2,514 ms
28,372 KB
testcase_12 AC 1,998 ms
26,968 KB
testcase_13 AC 2,983 ms
31,156 KB
testcase_14 AC 3,079 ms
31,936 KB
testcase_15 AC 2,425 ms
29,404 KB
testcase_16 AC 1,861 ms
29,240 KB
testcase_17 AC 1,778 ms
29,352 KB
testcase_18 AC 1,744 ms
29,356 KB
testcase_19 AC 1,697 ms
32,668 KB
testcase_20 AC 1,660 ms
32,660 KB
testcase_21 AC 1,674 ms
32,540 KB
testcase_22 AC 1,561 ms
27,660 KB
testcase_23 AC 1,648 ms
28,560 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 AC 100 ms
11,136 KB
testcase_26 AC 56 ms
10,880 KB
testcase_27 AC 47 ms
10,752 KB
testcase_28 AC 563 ms
14,220 KB
testcase_29 AC 306 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 = 10**9
    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