結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー YKiyofujiYKiyofuji
提出日時 2019-11-26 23:56:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,285 ms / 5,000 ms
コード長 469 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,912 KB
実行使用メモリ 107,480 KB
最終ジャッジ日時 2024-04-26 00:53:27
合計ジャッジ時間 30,429 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 792 ms
102,364 KB
testcase_01 AC 39 ms
58,356 KB
testcase_02 AC 812 ms
79,892 KB
testcase_03 AC 1,519 ms
95,296 KB
testcase_04 AC 1,506 ms
104,100 KB
testcase_05 AC 1,493 ms
103,880 KB
testcase_06 AC 1,128 ms
104,092 KB
testcase_07 AC 2,109 ms
102,428 KB
testcase_08 AC 2,285 ms
102,092 KB
testcase_09 AC 1,626 ms
101,948 KB
testcase_10 AC 1,351 ms
99,636 KB
testcase_11 AC 1,405 ms
104,688 KB
testcase_12 AC 991 ms
99,896 KB
testcase_13 AC 2,024 ms
104,556 KB
testcase_14 AC 2,012 ms
107,480 KB
testcase_15 AC 1,435 ms
103,892 KB
testcase_16 AC 637 ms
103,848 KB
testcase_17 AC 557 ms
104,332 KB
testcase_18 AC 524 ms
103,848 KB
testcase_19 AC 721 ms
102,064 KB
testcase_20 AC 549 ms
102,284 KB
testcase_21 AC 540 ms
102,220 KB
testcase_22 AC 475 ms
100,192 KB
testcase_23 AC 510 ms
103,224 KB
testcase_24 AC 36 ms
53,536 KB
testcase_25 AC 92 ms
61,444 KB
testcase_26 AC 62 ms
62,408 KB
testcase_27 AC 55 ms
60,392 KB
testcase_28 AC 397 ms
68,712 KB
testcase_29 AC 229 ms
65,124 KB
testcase_30 AC 97 ms
61,536 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