結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー roiti46roiti46
提出日時 2015-02-24 15:11:26
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 272 ms / 5,000 ms
コード長 300 bytes
コンパイル時間 1,936 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 99,200 KB
最終ジャッジ日時 2024-11-08 11:30:07
合計ジャッジ時間 10,105 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 172 ms
99,200 KB
testcase_01 AC 89 ms
76,928 KB
testcase_02 AC 162 ms
84,220 KB
testcase_03 AC 221 ms
89,968 KB
testcase_04 AC 269 ms
94,452 KB
testcase_05 AC 269 ms
94,452 KB
testcase_06 AC 270 ms
94,576 KB
testcase_07 AC 269 ms
98,816 KB
testcase_08 AC 270 ms
99,072 KB
testcase_09 AC 269 ms
98,816 KB
testcase_10 AC 253 ms
92,852 KB
testcase_11 AC 263 ms
94,412 KB
testcase_12 AC 248 ms
92,428 KB
testcase_13 AC 254 ms
93,008 KB
testcase_14 AC 259 ms
94,712 KB
testcase_15 AC 242 ms
93,056 KB
testcase_16 AC 267 ms
94,836 KB
testcase_17 AC 269 ms
94,704 KB
testcase_18 AC 272 ms
94,832 KB
testcase_19 AC 269 ms
98,816 KB
testcase_20 AC 270 ms
98,944 KB
testcase_21 AC 271 ms
98,560 KB
testcase_22 AC 253 ms
92,728 KB
testcase_23 AC 261 ms
94,292 KB
testcase_24 AC 88 ms
75,392 KB
testcase_25 AC 102 ms
77,952 KB
testcase_26 AC 99 ms
78,080 KB
testcase_27 AC 97 ms
78,336 KB
testcase_28 AC 125 ms
80,384 KB
testcase_29 AC 111 ms
79,488 KB
testcase_30 AC 101 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect
N = int(raw_input())
L = map(int,raw_input().split())
K = int(raw_input())
ans = 10**4
d,u = 0,10**9
for loop in xrange(100):
    cnt = 0
    for l in L:
        cnt += int(l/ans)
    if cnt < K:
        u = ans
    else:
        d = ans
    ans = (u+d)/2.
print "%.10f"%ans
0