結果

問題 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
コンパイル時間 187 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,684 KB
最終ジャッジ日時 2024-05-07 12:37:23
合計ジャッジ時間 43,894 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,256 ms
32,684 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 923 ms
19,024 KB
testcase_03 AC 1,742 ms
26,572 KB
testcase_04 AC 2,335 ms
29,348 KB
testcase_05 AC 2,257 ms
29,480 KB
testcase_06 AC 1,924 ms
29,348 KB
testcase_07 AC 2,448 ms
32,656 KB
testcase_08 AC 2,503 ms
32,652 KB
testcase_09 AC 1,889 ms
32,652 KB
testcase_10 AC 2,037 ms
27,636 KB
testcase_11 AC 2,231 ms
28,540 KB
testcase_12 AC 1,649 ms
25,980 KB
testcase_13 AC 2,190 ms
31,140 KB
testcase_14 AC 2,352 ms
31,560 KB
testcase_15 AC 1,663 ms
29,276 KB
testcase_16 AC 1,427 ms
29,356 KB
testcase_17 AC 1,248 ms
29,336 KB
testcase_18 AC 1,193 ms
29,340 KB
testcase_19 AC 1,213 ms
32,652 KB
testcase_20 AC 1,187 ms
32,648 KB
testcase_21 AC 1,196 ms
32,648 KB
testcase_22 AC 1,151 ms
27,656 KB
testcase_23 AC 1,178 ms
28,540 KB
testcase_24 WA -
testcase_25 AC 85 ms
11,136 KB
testcase_26 AC 49 ms
11,008 KB
testcase_27 AC 43 ms
10,880 KB
testcase_28 AC 423 ms
14,324 KB
testcase_29 AC 258 ms
12,528 KB
testcase_30 AC 89 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