結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー ttakanottakano
提出日時 2017-12-05 10:48:06
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 949 bytes
コンパイル時間 1,587 ms
コンパイル使用メモリ 160,484 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-05-06 10:26:55
合計ジャッジ時間 10,753 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 63 ms
5,376 KB
testcase_03 AC 119 ms
5,376 KB
testcase_04 AC 148 ms
5,376 KB
testcase_05 AC 142 ms
5,376 KB
testcase_06 AC 145 ms
5,376 KB
testcase_07 AC 169 ms
5,376 KB
testcase_08 AC 170 ms
5,376 KB
testcase_09 AC 168 ms
5,376 KB
testcase_10 AC 132 ms
5,376 KB
testcase_11 AC 133 ms
5,376 KB
testcase_12 AC 123 ms
5,376 KB
testcase_13 AC 147 ms
5,376 KB
testcase_14 AC 156 ms
5,376 KB
testcase_15 AC 138 ms
5,376 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define print(x) cout<<x<<endl;
#define rep(i,a,b) for(int i=a;i<b;i++)
#define REP(i,a) for(int i=0;i<a;i++)
#define printall(n,array) for(int i=0;i<n;i++){cout<<array[i]<<" ";}cout<<endl;
typedef long long ll;
typedef pair<int, int> PI;
typedef pair<int, PI> V;
typedef vector<int> VE;
const ll mod = 1000000007; //10^9+7

int n;
ll l[202020];
ll k;

int main(){
  cin>>n;
  ll big=0;
  REP(i,n){
    cin>>l[i];
    big=max(big,l[i]);
  }
  cin>>k;
  sort(l,l+n);
  double right=big;
  double left=0;
  double max_=0;
  while(right-left>0.000000001){
    double mid=(left+right)/2;
    ll val=0;
    REP(i,n){
      val+=l[i]/mid;
    }
    //print(left<<" "<<right<<" "<<mid);///
    //print(val);///
    if(val<k){right=mid;}
    else if(val>=k){
      left=mid;
      if(val==k){
        max_=max(max_,mid);
        //print("max "<<max_);///
      }
    }
  }
  printf("%.10f",max_);
  print("");
}
0