結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー nisizawanisizawa
提出日時 2017-12-09 17:04:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,526 ms / 5,000 ms
コード長 374 bytes
コンパイル時間 1,065 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,520 KB
最終ジャッジ日時 2024-11-08 12:32:49
合計ジャッジ時間 45,168 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,218 ms
32,548 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 913 ms
18,892 KB
testcase_03 AC 1,754 ms
26,440 KB
testcase_04 AC 2,360 ms
29,212 KB
testcase_05 AC 2,274 ms
29,216 KB
testcase_06 AC 1,891 ms
29,340 KB
testcase_07 AC 2,526 ms
33,520 KB
testcase_08 AC 2,482 ms
33,264 KB
testcase_09 AC 1,973 ms
33,260 KB
testcase_10 AC 2,235 ms
26,424 KB
testcase_11 AC 2,198 ms
28,532 KB
testcase_12 AC 1,699 ms
26,520 KB
testcase_13 AC 2,216 ms
31,268 KB
testcase_14 AC 2,387 ms
32,184 KB
testcase_15 AC 1,677 ms
29,992 KB
testcase_16 AC 1,421 ms
29,220 KB
testcase_17 AC 1,287 ms
29,204 KB
testcase_18 AC 1,174 ms
29,332 KB
testcase_19 AC 1,240 ms
33,260 KB
testcase_20 AC 1,154 ms
33,256 KB
testcase_21 AC 1,232 ms
33,388 KB
testcase_22 AC 1,086 ms
27,648 KB
testcase_23 AC 1,143 ms
28,412 KB
testcase_24 AC 30 ms
10,624 KB
testcase_25 AC 85 ms
11,136 KB
testcase_26 AC 51 ms
10,880 KB
testcase_27 AC 46 ms
10,880 KB
testcase_28 AC 434 ms
14,204 KB
testcase_29 AC 243 ms
12,392 KB
testcase_30 AC 91 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ls = list(map(int, input().split()))
k = int(input())

low = 0
high = max(ls)
mid = (low + high) / 2
eps = 10**-9

while (high - low) > eps * 2 and (high - low) / mid > eps * 2:
    ct = 0
    for l in ls:
        ct += l // mid
        
    if ct >= k:
        low = mid
    else:
        high = mid
    mid = (low + high) / 2

print('{:.20f}'.format(mid))
0