結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 804 ms
102,096 KB
testcase_01 AC 41 ms
59,696 KB
testcase_02 AC 827 ms
79,832 KB
testcase_03 AC 1,510 ms
96,032 KB
testcase_04 AC 1,523 ms
104,244 KB
testcase_05 AC 1,506 ms
103,756 KB
testcase_06 AC 1,071 ms
104,136 KB
testcase_07 AC 2,005 ms
102,036 KB
testcase_08 AC 2,163 ms
102,304 KB
testcase_09 AC 1,588 ms
102,196 KB
testcase_10 AC 1,338 ms
100,132 KB
testcase_11 AC 1,383 ms
104,872 KB
testcase_12 AC 956 ms
99,000 KB
testcase_13 AC 1,866 ms
104,936 KB
testcase_14 AC 1,917 ms
107,540 KB
testcase_15 AC 1,364 ms
103,900 KB
testcase_16 AC 600 ms
103,560 KB
testcase_17 AC 541 ms
104,304 KB
testcase_18 AC 519 ms
103,472 KB
testcase_19 AC 692 ms
102,080 KB
testcase_20 AC 533 ms
102,104 KB
testcase_21 AC 541 ms
102,264 KB
testcase_22 AC 457 ms
98,676 KB
testcase_23 AC 492 ms
103,360 KB
testcase_24 AC 37 ms
53,340 KB
testcase_25 AC 86 ms
61,796 KB
testcase_26 AC 59 ms
61,880 KB
testcase_27 AC 51 ms
60,452 KB
testcase_28 AC 380 ms
69,576 KB
testcase_29 AC 221 ms
64,932 KB
testcase_30 AC 92 ms
62,304 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