結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー takakintakakin
提出日時 2020-05-03 20:23:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 4,180 ms / 5,000 ms
コード長 312 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,140 KB
最終ジャッジ日時 2024-11-08 13:21:02
合計ジャッジ時間 69,638 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,198 ms
33,140 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 1,033 ms
18,776 KB
testcase_03 AC 1,961 ms
26,324 KB
testcase_04 AC 2,714 ms
29,232 KB
testcase_05 AC 2,728 ms
29,356 KB
testcase_06 AC 2,593 ms
29,348 KB
testcase_07 AC 2,709 ms
32,656 KB
testcase_08 AC 2,704 ms
32,660 KB
testcase_09 AC 2,631 ms
32,656 KB
testcase_10 AC 2,444 ms
27,640 KB
testcase_11 AC 2,578 ms
28,544 KB
testcase_12 AC 2,248 ms
27,092 KB
testcase_13 AC 2,475 ms
31,024 KB
testcase_14 AC 2,589 ms
31,800 KB
testcase_15 AC 2,235 ms
29,392 KB
testcase_16 AC 4,180 ms
29,360 KB
testcase_17 AC 4,150 ms
29,348 KB
testcase_18 AC 3,611 ms
29,480 KB
testcase_19 AC 3,964 ms
32,784 KB
testcase_20 AC 3,506 ms
32,656 KB
testcase_21 AC 3,518 ms
32,784 KB
testcase_22 AC 1,801 ms
27,524 KB
testcase_23 AC 3,416 ms
28,416 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 81 ms
11,136 KB
testcase_26 AC 48 ms
10,752 KB
testcase_27 AC 44 ms
10,880 KB
testcase_28 AC 458 ms
14,176 KB
testcase_29 AC 244 ms
12,536 KB
testcase_30 AC 85 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

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**2:
  mid=(l+r)/2
  if chk(mid):
    l=mid
  else:
    r=mid
  t+=1
print(l)
0