結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,065 ms
33,264 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 972 ms
19,028 KB
testcase_03 AC 1,835 ms
26,452 KB
testcase_04 AC 2,601 ms
29,220 KB
testcase_05 AC 2,670 ms
29,352 KB
testcase_06 AC 2,540 ms
29,352 KB
testcase_07 AC 2,605 ms
32,784 KB
testcase_08 AC 2,596 ms
32,532 KB
testcase_09 AC 2,507 ms
32,656 KB
testcase_10 AC 2,338 ms
27,516 KB
testcase_11 AC 2,438 ms
28,540 KB
testcase_12 AC 2,148 ms
26,964 KB
testcase_13 AC 2,395 ms
31,148 KB
testcase_14 AC 2,468 ms
31,920 KB
testcase_15 AC 2,147 ms
29,400 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)
t=0
while r-l>10**(-9) and t<=10**5:
  mid=(l+r)/2
  if chk(mid):
    l=mid
  else:
    r=mid
  t+=1
print(l)
0