結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー YKiyofujiYKiyofuji
提出日時 2019-11-26 23:37:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,296 ms / 5,000 ms
コード長 468 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 108,096 KB
最終ジャッジ日時 2024-04-26 00:50:39
合計ジャッジ時間 30,615 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 815 ms
102,160 KB
testcase_01 AC 41 ms
58,616 KB
testcase_02 AC 814 ms
80,020 KB
testcase_03 AC 1,525 ms
95,520 KB
testcase_04 AC 1,528 ms
104,032 KB
testcase_05 AC 1,505 ms
104,128 KB
testcase_06 AC 1,152 ms
103,968 KB
testcase_07 AC 2,094 ms
102,236 KB
testcase_08 AC 2,296 ms
102,080 KB
testcase_09 AC 1,620 ms
102,016 KB
testcase_10 AC 1,376 ms
99,360 KB
testcase_11 AC 1,450 ms
103,300 KB
testcase_12 AC 1,014 ms
99,020 KB
testcase_13 AC 1,893 ms
104,588 KB
testcase_14 AC 1,968 ms
108,096 KB
testcase_15 AC 1,391 ms
104,428 KB
testcase_16 AC 668 ms
104,912 KB
testcase_17 AC 577 ms
104,404 KB
testcase_18 AC 545 ms
104,260 KB
testcase_19 AC 683 ms
102,320 KB
testcase_20 AC 564 ms
102,216 KB
testcase_21 AC 569 ms
101,980 KB
testcase_22 AC 492 ms
99,172 KB
testcase_23 AC 540 ms
103,724 KB
testcase_24 AC 39 ms
53,220 KB
testcase_25 AC 91 ms
61,796 KB
testcase_26 AC 65 ms
61,452 KB
testcase_27 AC 58 ms
60,684 KB
testcase_28 AC 381 ms
68,784 KB
testcase_29 AC 222 ms
64,408 KB
testcase_30 AC 97 ms
62,784 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