結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー takakintakakin
提出日時 2020-05-03 20:19:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 288 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 33,644 KB
最終ジャッジ日時 2024-06-22 18:28:48
合計ジャッジ時間 43,215 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,027 ms
32,900 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 1,002 ms
19,024 KB
testcase_03 AC 1,822 ms
26,564 KB
testcase_04 AC 2,564 ms
29,472 KB
testcase_05 AC 2,475 ms
29,220 KB
testcase_06 AC 2,350 ms
29,472 KB
testcase_07 AC 2,440 ms
33,392 KB
testcase_08 AC 2,469 ms
33,644 KB
testcase_09 AC 2,372 ms
33,400 KB
testcase_10 AC 2,256 ms
26,552 KB
testcase_11 AC 2,406 ms
28,532 KB
testcase_12 AC 2,028 ms
26,652 KB
testcase_13 AC 2,267 ms
31,144 KB
testcase_14 AC 2,384 ms
32,188 KB
testcase_15 AC 2,072 ms
30,124 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
L=[int(i) for i in input().split()]
k=int(input())

def chk(x):
  ct=0
  for ln in L:
    ct+=int(ln/x)
  return ct>=k

l,r=0,max(L)
while r-l>10**(-9):
  mid=(l+r)/2
  if chk(mid):
    l=mid
  else:
    r=mid
print(l)
0