結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー oevloevl
提出日時 2019-03-21 22:46:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 215 ms / 5,000 ms
コード長 506 bytes
コンパイル時間 1,656 ms
コンパイル使用メモリ 169,160 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 12:49:58
合計ジャッジ時間 7,780 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 215 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 80 ms
5,248 KB
testcase_03 AC 151 ms
5,248 KB
testcase_04 AC 188 ms
5,248 KB
testcase_05 AC 187 ms
5,248 KB
testcase_06 AC 188 ms
5,248 KB
testcase_07 AC 211 ms
5,248 KB
testcase_08 AC 210 ms
5,248 KB
testcase_09 AC 210 ms
5,248 KB
testcase_10 AC 168 ms
5,248 KB
testcase_11 AC 178 ms
5,248 KB
testcase_12 AC 162 ms
5,248 KB
testcase_13 AC 191 ms
5,248 KB
testcase_14 AC 199 ms
5,248 KB
testcase_15 AC 179 ms
5,248 KB
testcase_16 AC 189 ms
5,248 KB
testcase_17 AC 187 ms
5,248 KB
testcase_18 AC 188 ms
5,248 KB
testcase_19 AC 209 ms
5,248 KB
testcase_20 AC 209 ms
5,248 KB
testcase_21 AC 209 ms
5,248 KB
testcase_22 AC 168 ms
5,248 KB
testcase_23 AC 178 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 6 ms
5,248 KB
testcase_26 AC 3 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 35 ms
5,248 KB
testcase_29 AC 19 ms
5,248 KB
testcase_30 AC 6 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, m, n) for (int i = m; i < n; ++i)
#define rem(i, m, n) for (int i = m; i >= n; --i)
typedef long long ll;

int main(){
  int N;
  cin >> N;
  vector<ll> L(N);
  rep(i, 0, N) cin >> L[i];
  ll K;
  cin >> K;
  double ok = 0;
  double ng = 1e11;
  double mid;
  rep(i, 0, 100) {
    mid = (ok + ng) / 2;
    ll cnt = 0;
    rep(j, 0, N) cnt += L[j] / mid;
    if(cnt >= K) ok = mid;
    else ng = mid;
  }
  printf("%.12lf\n", mid);
  return 0;
}
0