結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー nebukuro09nebukuro09
提出日時 2017-01-17 13:24:37
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 356 ms / 5,000 ms
コード長 288 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 103,376 KB
最終ジャッジ日時 2024-11-08 11:58:25
合計ジャッジ時間 10,060 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
103,028 KB
testcase_01 AC 89 ms
76,928 KB
testcase_02 AC 190 ms
86,964 KB
testcase_03 AC 269 ms
95,892 KB
testcase_04 AC 332 ms
100,732 KB
testcase_05 AC 356 ms
100,736 KB
testcase_06 AC 332 ms
100,740 KB
testcase_07 AC 332 ms
102,992 KB
testcase_08 AC 330 ms
102,864 KB
testcase_09 AC 331 ms
102,996 KB
testcase_10 AC 312 ms
98,120 KB
testcase_11 AC 324 ms
100,468 KB
testcase_12 AC 297 ms
98,100 KB
testcase_13 AC 308 ms
100,476 KB
testcase_14 AC 322 ms
102,308 KB
testcase_15 AC 296 ms
99,632 KB
testcase_16 AC 333 ms
101,120 KB
testcase_17 AC 333 ms
100,860 KB
testcase_18 AC 333 ms
100,740 KB
testcase_19 AC 332 ms
102,864 KB
testcase_20 AC 332 ms
103,376 KB
testcase_21 AC 334 ms
102,864 KB
testcase_22 AC 305 ms
98,112 KB
testcase_23 AC 319 ms
100,476 KB
testcase_24 AC 83 ms
75,776 KB
testcase_25 AC 100 ms
77,952 KB
testcase_26 AC 99 ms
78,336 KB
testcase_27 AC 95 ms
78,208 KB
testcase_28 AC 135 ms
81,280 KB
testcase_29 AC 116 ms
79,488 KB
testcase_30 AC 99 ms
78,208 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