結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,856 ms
32,696 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 1,208 ms
19,040 KB
testcase_03 AC 2,283 ms
26,584 KB
testcase_04 AC 2,543 ms
29,364 KB
testcase_05 AC 2,486 ms
29,364 KB
testcase_06 AC 2,187 ms
29,356 KB
testcase_07 AC 3,062 ms
32,664 KB
testcase_08 AC 3,083 ms
32,612 KB
testcase_09 AC 2,644 ms
32,664 KB
testcase_10 AC 2,239 ms
27,652 KB
testcase_11 AC 2,344 ms
28,548 KB
testcase_12 AC 1,880 ms
27,096 KB
testcase_13 AC 2,812 ms
31,152 KB
testcase_14 AC 2,967 ms
31,936 KB
testcase_15 AC 2,253 ms
29,404 KB
testcase_16 AC 1,709 ms
29,368 KB
testcase_17 AC 1,641 ms
29,352 KB
testcase_18 AC 1,647 ms
29,360 KB
testcase_19 AC 1,617 ms
32,576 KB
testcase_20 AC 1,536 ms
32,660 KB
testcase_21 AC 1,559 ms
32,796 KB
testcase_22 AC 1,479 ms
27,664 KB
testcase_23 AC 1,549 ms
28,556 KB
testcase_24 AC 27 ms
10,880 KB
testcase_25 AC 93 ms
11,264 KB
testcase_26 AC 51 ms
10,880 KB
testcase_27 AC 43 ms
10,880 KB
testcase_28 AC 513 ms
14,328 KB
testcase_29 AC 283 ms
12,416 KB
testcase_30 AC 97 ms
11,264 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