結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,835 ms
32,692 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 1,219 ms
19,040 KB
testcase_03 AC 2,289 ms
26,708 KB
testcase_04 AC 2,562 ms
29,488 KB
testcase_05 AC 2,493 ms
29,364 KB
testcase_06 AC 2,204 ms
29,356 KB
testcase_07 AC 3,065 ms
32,672 KB
testcase_08 AC 3,061 ms
32,536 KB
testcase_09 AC 2,600 ms
32,664 KB
testcase_10 AC 2,208 ms
27,652 KB
testcase_11 AC 2,327 ms
28,552 KB
testcase_12 AC 1,868 ms
26,972 KB
testcase_13 AC 2,741 ms
31,284 KB
testcase_14 AC 2,896 ms
31,940 KB
testcase_15 AC 2,258 ms
29,408 KB
testcase_16 AC 1,717 ms
29,368 KB
testcase_17 AC 1,680 ms
29,348 KB
testcase_18 AC 1,614 ms
29,360 KB
testcase_19 AC 1,586 ms
32,664 KB
testcase_20 AC 1,568 ms
32,660 KB
testcase_21 AC 1,573 ms
32,668 KB
testcase_22 AC 1,464 ms
27,788 KB
testcase_23 AC 1,539 ms
28,556 KB
testcase_24 AC 27 ms
10,752 KB
testcase_25 AC 91 ms
11,136 KB
testcase_26 AC 51 ms
11,008 KB
testcase_27 AC 43 ms
10,880 KB
testcase_28 AC 514 ms
14,220 KB
testcase_29 AC 285 ms
12,540 KB
testcase_30 AC 95 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 = 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