結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー nebukuro09nebukuro09
提出日時 2016-09-23 14:29:21
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 288 bytes
コンパイル時間 1,745 ms
コンパイル使用メモリ 76,560 KB
実行使用メモリ 204,356 KB
最終ジャッジ日時 2024-11-17 18:54:53
合計ジャッジ時間 49,587 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 189 ms
203,596 KB
testcase_01 AC 63 ms
177,652 KB
testcase_02 AC 119 ms
92,300 KB
testcase_03 AC 163 ms
197,008 KB
testcase_04 AC 201 ms
204,356 KB
testcase_05 AC 201 ms
204,256 KB
testcase_06 AC 200 ms
100,604 KB
testcase_07 AC 200 ms
102,608 KB
testcase_08 AC 199 ms
102,476 KB
testcase_09 AC 201 ms
102,736 KB
testcase_10 AC 190 ms
97,856 KB
testcase_11 AC 197 ms
100,072 KB
testcase_12 AC 184 ms
97,848 KB
testcase_13 AC 187 ms
100,476 KB
testcase_14 AC 193 ms
102,048 KB
testcase_15 AC 182 ms
99,756 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 175 ms
97,972 KB
testcase_23 TLE -
testcase_24 AC 60 ms
75,264 KB
testcase_25 AC 71 ms
77,704 KB
testcase_26 AC 71 ms
77,848 KB
testcase_27 AC 67 ms
77,700 KB
testcase_28 AC 90 ms
80,952 KB
testcase_29 AC 80 ms
79,232 KB
testcase_30 AC 72 ms
178,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
while high-low > EPS:
    middle = (high+low)/2.0
    if sum(int(x/middle) for x in L) >= K:
        low = middle
    else:
        high = middle
print '%.09f'%high
0