結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-24 22:24:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 214 ms / 5,000 ms
コード長 360 bytes
コンパイル時間 584 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 104,704 KB
最終ジャッジ日時 2024-11-08 13:31:34
合計ジャッジ時間 6,936 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
100,352 KB
testcase_01 AC 47 ms
58,624 KB
testcase_02 AC 114 ms
81,664 KB
testcase_03 AC 169 ms
100,224 KB
testcase_04 AC 213 ms
104,448 KB
testcase_05 AC 214 ms
104,320 KB
testcase_06 AC 209 ms
103,808 KB
testcase_07 AC 212 ms
102,400 KB
testcase_08 AC 211 ms
102,400 KB
testcase_09 AC 204 ms
102,272 KB
testcase_10 AC 198 ms
103,552 KB
testcase_11 AC 206 ms
104,576 KB
testcase_12 AC 188 ms
104,064 KB
testcase_13 AC 203 ms
99,712 KB
testcase_14 AC 207 ms
101,760 KB
testcase_15 AC 186 ms
100,352 KB
testcase_16 AC 201 ms
104,448 KB
testcase_17 AC 197 ms
104,448 KB
testcase_18 AC 195 ms
104,192 KB
testcase_19 AC 197 ms
102,400 KB
testcase_20 AC 197 ms
102,528 KB
testcase_21 AC 196 ms
102,400 KB
testcase_22 AC 181 ms
103,168 KB
testcase_23 AC 188 ms
104,704 KB
testcase_24 AC 42 ms
52,224 KB
testcase_25 AC 56 ms
61,952 KB
testcase_26 AC 55 ms
61,312 KB
testcase_27 AC 50 ms
59,136 KB
testcase_28 AC 78 ms
69,632 KB
testcase_29 AC 65 ms
65,408 KB
testcase_30 AC 56 ms
61,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

eps = 1e-10
N = int(input())
A = list(map(lambda x: float(x) + eps, input().split()))
K = int(input())


def OK(L):
    cnt = 0
    for a in A:
        cnt += int(a / L)
    return cnt >= K


wa = eps
ac = 1e20
while ac - wa > ac * eps:
    wj = (ac + wa) * 0.5
    if OK(wj):
        wa = wj
    else:
        ac = wj

print("{:.20f}".format((ac + wa) * 0.5))
0