結果

問題 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
コンパイル時間 149 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,136 KB
最終ジャッジ日時 2024-11-30 04:55:16
合計ジャッジ時間 55,058 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,067 ms
33,136 KB
testcase_01 WA -
testcase_02 AC 1,030 ms
18,884 KB
testcase_03 AC 1,939 ms
26,432 KB
testcase_04 AC 2,316 ms
29,204 KB
testcase_05 AC 2,342 ms
29,332 KB
testcase_06 AC 2,368 ms
29,328 KB
testcase_07 AC 2,704 ms
32,508 KB
testcase_08 AC 2,730 ms
32,504 KB
testcase_09 AC 2,436 ms
32,512 KB
testcase_10 AC 2,163 ms
27,628 KB
testcase_11 AC 2,203 ms
28,392 KB
testcase_12 AC 1,903 ms
26,948 KB
testcase_13 AC 2,412 ms
31,008 KB
testcase_14 AC 2,557 ms
31,792 KB
testcase_15 AC 2,169 ms
29,248 KB
testcase_16 AC 2,140 ms
29,208 KB
testcase_17 AC 2,028 ms
29,196 KB
testcase_18 AC 2,099 ms
29,200 KB
testcase_19 AC 2,011 ms
32,512 KB
testcase_20 AC 1,914 ms
32,508 KB
testcase_21 AC 1,922 ms
32,632 KB
testcase_22 AC 1,930 ms
27,516 KB
testcase_23 AC 1,942 ms
28,412 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 AC 84 ms
11,008 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 459 ms
14,200 KB
testcase_29 AC 244 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