結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー nebukuro09nebukuro09
提出日時 2016-10-04 16:45:37
言語 Python2
(2.7.18)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 287 bytes
コンパイル時間 966 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 23,740 KB
最終ジャッジ日時 2024-06-01 08:18:51
合計ジャッジ時間 53,294 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,199 ms
23,740 KB
testcase_01 WA -
testcase_02 AC 852 ms
12,740 KB
testcase_03 AC 1,619 ms
18,868 KB
testcase_04 AC 2,305 ms
22,036 KB
testcase_05 AC 2,299 ms
22,024 KB
testcase_06 AC 2,282 ms
22,152 KB
testcase_07 AC 2,232 ms
23,608 KB
testcase_08 AC 2,238 ms
23,740 KB
testcase_09 AC 2,269 ms
23,736 KB
testcase_10 AC 2,064 ms
20,452 KB
testcase_11 AC 2,181 ms
21,252 KB
testcase_12 AC 1,975 ms
19,960 KB
testcase_13 AC 2,044 ms
22,156 KB
testcase_14 AC 2,121 ms
22,808 KB
testcase_15 AC 1,933 ms
21,180 KB
testcase_16 AC 2,210 ms
22,028 KB
testcase_17 AC 2,196 ms
22,144 KB
testcase_18 AC 2,192 ms
22,148 KB
testcase_19 AC 2,200 ms
23,608 KB
testcase_20 AC 2,185 ms
23,616 KB
testcase_21 AC 2,193 ms
23,740 KB
testcase_22 AC 1,975 ms
20,544 KB
testcase_23 AC 2,080 ms
21,256 KB
testcase_24 AC 11 ms
6,400 KB
testcase_25 AC 54 ms
6,656 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 365 ms
9,048 KB
testcase_29 AC 187 ms
7,680 KB
testcase_30 AC 56 ms
6,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
L = map(int, raw_input().split())
K = int(raw_input())
EPS = 10**(-9)

high = float(max(L))
low = 0.0
for i in xrange(50):
    middle = (high+low)/2.0
    if sum(int(x/middle) for x in L) >= K:
        low = middle
    else:
        high = middle
print '%.09f'%high
0