結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー nisizawanisizawa
提出日時 2017-12-09 16:30:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 300 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,256 KB
最終ジャッジ日時 2024-05-07 12:17:16
合計ジャッジ時間 55,915 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,109 ms
33,256 KB
testcase_01 WA -
testcase_02 AC 1,082 ms
19,008 KB
testcase_03 AC 1,921 ms
26,556 KB
testcase_04 AC 2,488 ms
29,332 KB
testcase_05 AC 2,382 ms
29,208 KB
testcase_06 AC 2,293 ms
29,328 KB
testcase_07 AC 2,703 ms
32,640 KB
testcase_08 AC 2,641 ms
32,508 KB
testcase_09 AC 2,419 ms
32,508 KB
testcase_10 AC 2,078 ms
27,500 KB
testcase_11 AC 2,213 ms
28,524 KB
testcase_12 AC 1,896 ms
26,948 KB
testcase_13 AC 2,467 ms
31,008 KB
testcase_14 AC 2,516 ms
31,916 KB
testcase_15 AC 2,101 ms
29,244 KB
testcase_16 AC 2,067 ms
29,336 KB
testcase_17 AC 2,006 ms
29,196 KB
testcase_18 AC 2,029 ms
29,328 KB
testcase_19 AC 1,978 ms
32,528 KB
testcase_20 AC 2,021 ms
32,632 KB
testcase_21 AC 2,074 ms
32,640 KB
testcase_22 AC 1,872 ms
27,636 KB
testcase_23 AC 1,876 ms
28,408 KB
testcase_24 AC 29 ms
10,752 KB
testcase_25 AC 82 ms
11,136 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 457 ms
14,200 KB
testcase_29 AC 247 ms
12,388 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

low = 0
high = max(ls)

for i in range(50):
    mid = (low + high) / 2
    
    ct = 0
    for l in ls:
        ct += l // mid
        
    if ct >= k:
        low = mid
    else:
        high = mid

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