結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー roiti46roiti46
提出日時 2015-02-24 15:13:49
言語 Python2
(2.7.18)
結果
AC  
実行時間 2,253 ms / 5,000 ms
コード長 240 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 23,740 KB
最終ジャッジ日時 2024-11-08 11:28:52
合計ジャッジ時間 51,270 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,123 ms
23,608 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 821 ms
12,744 KB
testcase_03 AC 1,567 ms
18,872 KB
testcase_04 AC 2,251 ms
21,908 KB
testcase_05 AC 2,253 ms
22,152 KB
testcase_06 AC 2,216 ms
22,028 KB
testcase_07 AC 2,161 ms
23,612 KB
testcase_08 AC 2,157 ms
23,608 KB
testcase_09 AC 2,187 ms
23,620 KB
testcase_10 AC 2,020 ms
20,448 KB
testcase_11 AC 2,149 ms
21,376 KB
testcase_12 AC 1,917 ms
19,704 KB
testcase_13 AC 1,975 ms
22,156 KB
testcase_14 AC 2,056 ms
22,812 KB
testcase_15 AC 1,855 ms
21,180 KB
testcase_16 AC 2,135 ms
21,896 KB
testcase_17 AC 2,124 ms
22,012 KB
testcase_18 AC 2,112 ms
22,120 KB
testcase_19 AC 2,127 ms
23,564 KB
testcase_20 AC 2,114 ms
23,608 KB
testcase_21 AC 2,109 ms
23,740 KB
testcase_22 AC 1,918 ms
20,460 KB
testcase_23 AC 2,009 ms
21,384 KB
testcase_24 AC 11 ms
6,272 KB
testcase_25 AC 52 ms
6,656 KB
testcase_26 AC 26 ms
6,400 KB
testcase_27 AC 20 ms
6,272 KB
testcase_28 AC 354 ms
8,924 KB
testcase_29 AC 181 ms
7,680 KB
testcase_30 AC 55 ms
6,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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(50):
    cnt = sum(int(l/ans) for l in L)
    if cnt < K: u = ans
    else: d = ans
    ans = (u+d)/2.
print "%.10f"%ans
0