結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー betit0919betit0919
提出日時 2019-08-18 19:58:33
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 208 ms / 5,000 ms
コード長 983 bytes
コンパイル時間 1,156 ms
コンパイル使用メモリ 104,048 KB
実行使用メモリ 6,784 KB
最終ジャッジ日時 2024-11-08 12:57:20
合計ジャッジ時間 7,152 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
6,656 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 78 ms
5,248 KB
testcase_03 AC 149 ms
5,760 KB
testcase_04 AC 202 ms
6,784 KB
testcase_05 AC 202 ms
6,528 KB
testcase_06 AC 202 ms
6,784 KB
testcase_07 AC 205 ms
6,528 KB
testcase_08 AC 205 ms
6,528 KB
testcase_09 AC 205 ms
6,656 KB
testcase_10 AC 182 ms
6,272 KB
testcase_11 AC 191 ms
6,528 KB
testcase_12 AC 175 ms
6,016 KB
testcase_13 AC 187 ms
6,272 KB
testcase_14 AC 194 ms
6,400 KB
testcase_15 AC 174 ms
6,144 KB
testcase_16 AC 201 ms
6,528 KB
testcase_17 AC 201 ms
6,656 KB
testcase_18 AC 202 ms
6,528 KB
testcase_19 AC 205 ms
6,784 KB
testcase_20 AC 205 ms
6,656 KB
testcase_21 AC 206 ms
6,656 KB
testcase_22 AC 182 ms
6,144 KB
testcase_23 AC 193 ms
6,400 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 6 ms
5,248 KB
testcase_26 AC 4 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 <iostream>
#include <vector>
#include <set>
#include <algorithm>
#include <math.h>
#include <string.h>
#include <map>
#include <numeric>
#include <random>
#include <queue>
#include <deque>
#include <tuple>
#include <iomanip>
#include <iterator>
#include <functional>

using namespace std;
typedef long long ll;

const int INF = (1 << 30) - 1;
const ll INFLL= (1LL << 61) - 1;
const int MOD = 1000000007;
#define ALL(a) (a).begin(),(a).end()
#define rALL(a) (a).rbegin(),(a).rend()
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n) FOR(i,0,n)

int main(){
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  int N;
  cin>>N;
  vector<long double> L(N);
  REP(i,N)cin>>L[i];
  ll K;
  cin>>K;
  long double high=10000000000000000,low=0;
  long double mid;

  REP(loop,200){
    ll cnt=0;
    mid=(high+low)/2.0;
    REP(i,N){
      cnt+=ll(L[i]/mid);
    }
    if(cnt>=K){
      low=mid;
    }else{
      high=mid;
    }
  }
  cout<<setprecision(15)<<mid<<endl;
}
0