結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー pluto77pluto77
提出日時 2016-08-11 10:11:06
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,106 ms / 5,000 ms
コード長 264 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 103,380 KB
最終ジャッジ日時 2024-11-08 11:54:45
合計ジャッジ時間 17,372 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 360 ms
103,380 KB
testcase_01 AC 86 ms
77,184 KB
testcase_02 AC 463 ms
87,308 KB
testcase_03 AC 807 ms
95,760 KB
testcase_04 AC 821 ms
101,496 KB
testcase_05 AC 818 ms
101,120 KB
testcase_06 AC 607 ms
101,116 KB
testcase_07 AC 1,106 ms
103,116 KB
testcase_08 AC 1,081 ms
102,988 KB
testcase_09 AC 772 ms
103,248 KB
testcase_10 AC 747 ms
98,624 KB
testcase_11 AC 783 ms
100,848 KB
testcase_12 AC 543 ms
98,240 KB
testcase_13 AC 982 ms
100,476 KB
testcase_14 AC 1,018 ms
102,552 KB
testcase_15 AC 696 ms
99,876 KB
testcase_16 AC 348 ms
101,376 KB
testcase_17 AC 319 ms
101,236 KB
testcase_18 AC 305 ms
101,248 KB
testcase_19 AC 314 ms
103,248 KB
testcase_20 AC 307 ms
103,116 KB
testcase_21 AC 300 ms
103,252 KB
testcase_22 AC 278 ms
98,624 KB
testcase_23 AC 290 ms
100,476 KB
testcase_24 AC 83 ms
75,392 KB
testcase_25 AC 118 ms
78,592 KB
testcase_26 AC 103 ms
78,848 KB
testcase_27 AC 97 ms
78,592 KB
testcase_28 AC 262 ms
80,896 KB
testcase_29 AC 190 ms
80,000 KB
testcase_30 AC 120 ms
78,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8
#yuki67

n=int(raw_input())
ll=map(int,raw_input().split())
k=int(raw_input())

EPS=1e-9
l=0.0
r=10000000000
while l+EPS<r and l*(1.0+EPS)<r:
 m=(l+r)/2.0
 sum=0.0
 for i in xrange(n):
  sum+=ll[i]//m
 if sum<k:
  r=m
 else:
  l=m
   
print (l+r)/2
0