結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,244 ms
32,688 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 850 ms
18,896 KB
testcase_03 AC 1,764 ms
26,644 KB
testcase_04 AC 2,263 ms
29,224 KB
testcase_05 AC 2,226 ms
29,352 KB
testcase_06 AC 1,766 ms
29,224 KB
testcase_07 AC 2,363 ms
32,524 KB
testcase_08 AC 2,257 ms
32,528 KB
testcase_09 AC 1,757 ms
32,656 KB
testcase_10 AC 1,937 ms
27,760 KB
testcase_11 AC 2,020 ms
28,416 KB
testcase_12 AC 1,576 ms
25,920 KB
testcase_13 AC 2,070 ms
31,016 KB
testcase_14 AC 2,118 ms
31,452 KB
testcase_15 AC 1,652 ms
29,260 KB
testcase_16 AC 1,231 ms
29,252 KB
testcase_17 AC 1,335 ms
29,336 KB
testcase_18 AC 1,137 ms
29,468 KB
testcase_19 AC 1,089 ms
32,528 KB
testcase_20 AC 1,112 ms
32,528 KB
testcase_21 AC 1,215 ms
32,520 KB
testcase_22 AC 995 ms
27,656 KB
testcase_23 AC 1,144 ms
28,412 KB
testcase_24 WA -
testcase_25 AC 82 ms
11,008 KB
testcase_26 AC 45 ms
10,880 KB
testcase_27 AC 40 ms
10,752 KB
testcase_28 AC 406 ms
14,172 KB
testcase_29 AC 239 ms
12,400 KB
testcase_30 AC 82 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

low = 0
high = max(ls)
eps = 10**-9

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

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