結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー sutu1sutu1
提出日時 2024-10-12 00:56:23
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,312 ms / 5,000 ms
コード長 661 bytes
コンパイル時間 2,703 ms
コンパイル使用メモリ 243,400 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-10-12 00:56:59
合計ジャッジ時間 33,783 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,307 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 493 ms
5,248 KB
testcase_03 AC 954 ms
5,248 KB
testcase_04 AC 1,299 ms
5,248 KB
testcase_05 AC 1,304 ms
5,248 KB
testcase_06 AC 1,300 ms
5,248 KB
testcase_07 AC 1,312 ms
5,376 KB
testcase_08 AC 1,312 ms
5,248 KB
testcase_09 AC 1,303 ms
5,248 KB
testcase_10 AC 1,166 ms
5,248 KB
testcase_11 AC 1,240 ms
5,248 KB
testcase_12 AC 1,127 ms
5,248 KB
testcase_13 AC 1,189 ms
5,248 KB
testcase_14 AC 1,236 ms
5,248 KB
testcase_15 AC 1,106 ms
5,248 KB
testcase_16 AC 1,308 ms
5,376 KB
testcase_17 AC 1,300 ms
5,248 KB
testcase_18 AC 1,297 ms
5,248 KB
testcase_19 AC 1,303 ms
5,248 KB
testcase_20 AC 1,302 ms
5,248 KB
testcase_21 AC 1,312 ms
5,248 KB
testcase_22 AC 1,177 ms
5,248 KB
testcase_23 AC 1,230 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 28 ms
5,248 KB
testcase_26 AC 11 ms
5,248 KB
testcase_27 AC 8 ms
5,248 KB
testcase_28 AC 210 ms
5,248 KB
testcase_29 AC 105 ms
5,248 KB
testcase_30 AC 28 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define endl "\n"
typedef long long ll;
#define int long long
int n, k;
int a[200005];
bool check(double x) {
  int ans = 0;
  for (int i = 1; i <= n; i++) ans += (int)a[i] / x;
  return ans >= k;
}
void solved() {
  cin >> n;
  for (int i = 1; i <= n; i++) cin >> a[i];
  cin >> k;
  double l = 0, r = 1e9;
  for (int i = 1; i <= 1000; i++) {
    double mid = (l + r + 1) / 2;
    if (check(mid))
      l = mid;
    else
      r = mid - 1;
  }
  printf("%.15lf\n", l);
}
signed main() {
  ios::sync_with_stdio(0);
  cin.tie(0);
  cout.tie(0);
  /*int t = 1;
  cin >> t;
  while (t--)*/
  solved();

  return 0;
}
0