結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー nebukuro09nebukuro09
提出日時 2016-10-04 16:45:17
言語 Python2
(2.7.18)
結果
AC  
実行時間 4,498 ms / 5,000 ms
コード長 288 bytes
コンパイル時間 808 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 23,740 KB
最終ジャッジ日時 2024-11-08 11:58:03
合計ジャッジ時間 101,646 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,295 ms
23,736 KB
testcase_01 AC 12 ms
6,144 KB
testcase_02 AC 1,634 ms
12,744 KB
testcase_03 AC 3,134 ms
18,744 KB
testcase_04 AC 4,498 ms
22,036 KB
testcase_05 AC 4,483 ms
22,024 KB
testcase_06 AC 4,432 ms
22,156 KB
testcase_07 AC 4,346 ms
23,736 KB
testcase_08 AC 4,367 ms
23,484 KB
testcase_09 AC 4,443 ms
23,740 KB
testcase_10 AC 4,005 ms
20,448 KB
testcase_11 AC 4,249 ms
21,380 KB
testcase_12 AC 3,823 ms
19,960 KB
testcase_13 AC 3,943 ms
22,028 KB
testcase_14 AC 4,148 ms
22,684 KB
testcase_15 AC 3,739 ms
21,052 KB
testcase_16 AC 4,266 ms
22,104 KB
testcase_17 AC 4,226 ms
22,140 KB
testcase_18 AC 4,219 ms
22,020 KB
testcase_19 AC 4,264 ms
23,608 KB
testcase_20 AC 4,257 ms
23,740 KB
testcase_21 AC 4,269 ms
23,608 KB
testcase_22 AC 3,817 ms
20,396 KB
testcase_23 AC 4,008 ms
21,388 KB
testcase_24 AC 11 ms
6,272 KB
testcase_25 AC 93 ms
6,528 KB
testcase_26 AC 41 ms
6,400 KB
testcase_27 AC 31 ms
6,272 KB
testcase_28 AC 692 ms
8,924 KB
testcase_29 AC 354 ms
7,552 KB
testcase_30 AC 98 ms
6,528 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(100):
    middle = (high+low)/2.0
    if sum(int(x/middle) for x in L) >= K:
        low = middle
    else:
        high = middle
print '%.09f'%high
0