結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー gigurururugigurururu
提出日時 2014-11-25 13:16:28
言語 Python2
(2.7.18)
結果
AC  
実行時間 2,649 ms / 5,000 ms
コード長 238 bytes
コンパイル時間 1,257 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 23,800 KB
最終ジャッジ日時 2024-11-08 11:23:18
合計ジャッジ時間 46,439 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,362 ms
23,796 KB
testcase_01 AC 13 ms
6,400 KB
testcase_02 AC 977 ms
12,800 KB
testcase_03 AC 1,910 ms
18,848 KB
testcase_04 AC 2,454 ms
22,220 KB
testcase_05 AC 2,457 ms
22,088 KB
testcase_06 AC 2,044 ms
22,212 KB
testcase_07 AC 2,646 ms
23,800 KB
testcase_08 AC 2,649 ms
23,800 KB
testcase_09 AC 2,097 ms
23,796 KB
testcase_10 AC 2,219 ms
20,584 KB
testcase_11 AC 2,340 ms
21,440 KB
testcase_12 AC 1,790 ms
19,796 KB
testcase_13 AC 2,404 ms
22,340 KB
testcase_14 AC 2,507 ms
22,996 KB
testcase_15 AC 1,832 ms
21,112 KB
testcase_16 AC 1,469 ms
22,212 KB
testcase_17 AC 1,364 ms
22,076 KB
testcase_18 AC 1,270 ms
22,084 KB
testcase_19 AC 1,284 ms
23,800 KB
testcase_20 AC 1,274 ms
23,796 KB
testcase_21 AC 1,292 ms
23,668 KB
testcase_22 AC 1,151 ms
20,524 KB
testcase_23 AC 1,212 ms
21,440 KB
testcase_24 AC 12 ms
6,272 KB
testcase_25 AC 69 ms
6,912 KB
testcase_26 AC 33 ms
6,528 KB
testcase_27 AC 26 ms
6,528 KB
testcase_28 AC 441 ms
8,940 KB
testcase_29 AC 241 ms
7,680 KB
testcase_30 AC 74 ms
6,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=input()
la=map(int,raw_input().split())
k=input()

eps=1e-9
l=0.0
r=1e9

while all([d>eps for d in [abs(l-r),abs(l-r)/r]]):
    c=(l+r)/2
    if sum([i//c for i in la])>=k:
        l=c
    else:
        r=c

print (l+r)/2
0