結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー Bs_bekkuBs_bekku
提出日時 2020-03-29 07:39:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,292 ms / 5,000 ms
コード長 352 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,696 KB
最終ジャッジ日時 2024-11-08 13:15:56
合計ジャッジ時間 37,924 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,078 ms
32,696 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 870 ms
19,168 KB
testcase_03 AC 1,654 ms
26,584 KB
testcase_04 AC 1,945 ms
29,240 KB
testcase_05 AC 1,907 ms
29,368 KB
testcase_06 AC 1,569 ms
29,236 KB
testcase_07 AC 2,292 ms
32,544 KB
testcase_08 AC 2,236 ms
32,672 KB
testcase_09 AC 1,801 ms
32,544 KB
testcase_10 AC 1,741 ms
26,448 KB
testcase_11 AC 1,841 ms
28,556 KB
testcase_12 AC 1,366 ms
25,936 KB
testcase_13 AC 2,078 ms
31,160 KB
testcase_14 AC 2,162 ms
31,604 KB
testcase_15 AC 1,554 ms
29,412 KB
testcase_16 AC 1,077 ms
29,244 KB
testcase_17 AC 1,038 ms
29,352 KB
testcase_18 AC 989 ms
29,228 KB
testcase_19 AC 946 ms
32,544 KB
testcase_20 AC 945 ms
32,540 KB
testcase_21 AC 944 ms
32,540 KB
testcase_22 AC 888 ms
27,668 KB
testcase_23 AC 947 ms
28,432 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 81 ms
11,264 KB
testcase_26 AC 49 ms
10,880 KB
testcase_27 AC 43 ms
10,752 KB
testcase_28 AC 411 ms
14,184 KB
testcase_29 AC 235 ms
12,416 KB
testcase_30 AC 83 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
l=list(map(int,input().split()))
k=int(input())

left=0
right=max(l)+1
def wari(m,l,k):
  ans=0
  for i in l:
    ans+=i//m
  if ans<k:
    return True
  else:
    return False
while True:
  mid=(left+right)/2
  if wari(mid,l,k):
    if mid==right:
      break
    right=mid
  else:
    if mid==left:
      break
    left=mid
print(left)
0