結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー beetbeet
提出日時 2018-11-27 20:39:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 173 ms / 5,000 ms
コード長 653 bytes
コンパイル時間 2,147 ms
コンパイル使用メモリ 203,536 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 12:48:58
合計ジャッジ時間 6,991 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 65 ms
5,248 KB
testcase_03 AC 121 ms
5,248 KB
testcase_04 AC 145 ms
5,248 KB
testcase_05 AC 147 ms
5,248 KB
testcase_06 AC 145 ms
5,248 KB
testcase_07 AC 167 ms
5,248 KB
testcase_08 AC 168 ms
5,248 KB
testcase_09 AC 166 ms
5,248 KB
testcase_10 AC 130 ms
5,248 KB
testcase_11 AC 137 ms
5,248 KB
testcase_12 AC 127 ms
5,248 KB
testcase_13 AC 153 ms
5,248 KB
testcase_14 AC 158 ms
5,248 KB
testcase_15 AC 143 ms
5,248 KB
testcase_16 AC 145 ms
5,248 KB
testcase_17 AC 145 ms
5,248 KB
testcase_18 AC 144 ms
5,248 KB
testcase_19 AC 166 ms
5,248 KB
testcase_20 AC 166 ms
5,248 KB
testcase_21 AC 167 ms
5,248 KB
testcase_22 AC 131 ms
5,248 KB
testcase_23 AC 140 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 5 ms
5,248 KB
testcase_26 AC 3 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 29 ms
5,248 KB
testcase_29 AC 15 ms
5,248 KB
testcase_30 AC 5 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}


struct Precision{
  Precision(){
    cout<<fixed<<setprecision(12);
  }
}precision_beet;

//INSERT ABOVE HERE
signed main(){
  Int n;
  cin>>n;
  vector<double> l(n);
  for(Int i=0;i<n;i++) cin>>l[i];
  Int k;
  cin>>k;
  double L=l[0]/k,R=1e10;
  for(Int i=0;i<200;i++){
    double M=(L+R)/2;
    Int cnt=0;
    for(Int j=0;j<n;j++)
      cnt+=Int(l[j]/M);
    if(cnt>=k) L=M;
    else R=M;
  }
  cout<<L<<endl;
  return 0;
}
0