結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー focusfocus
提出日時 2018-01-12 15:26:31
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 619 bytes
コンパイル時間 890 ms
コンパイル使用メモリ 62,544 KB
実行使用メモリ 13,764 KB
最終ジャッジ日時 2024-12-24 00:19:38
合計ジャッジ時間 59,480 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 171 ms
10,780 KB
testcase_01 AC 2 ms
10,572 KB
testcase_02 AC 67 ms
10,576 KB
testcase_03 AC 127 ms
10,700 KB
testcase_04 AC 153 ms
10,900 KB
testcase_05 AC 151 ms
10,904 KB
testcase_06 AC 153 ms
10,752 KB
testcase_07 AC 176 ms
10,872 KB
testcase_08 AC 176 ms
11,036 KB
testcase_09 TLE -
testcase_10 AC 137 ms
5,312 KB
testcase_11 AC 146 ms
5,324 KB
testcase_12 AC 130 ms
5,528 KB
testcase_13 AC 160 ms
5,456 KB
testcase_14 AC 169 ms
5,324 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 124 ms
5,452 KB
testcase_23 TLE -
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 2 ms
5,248 KB
testcase_28 AC 29 ms
5,248 KB
testcase_29 AC 16 ms
5,248 KB
testcase_30 AC 6 ms
10,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<cstdio>
using namespace std;
typedef long long ll;
ll K;
vector<ll> L;
bool split(double num){
    ll eda=0;
    for(int i=0;i<L.size();i++){
        eda+=L[i]/num;
    }
    if(eda>=K)  return true;
    return false;
}
int main(){
    double lb=0,ub=0,mid;
    ll N,x;
    cin >> N;
    while(N--){
        cin >> x;
        L.push_back(x);
        if(ub<x)    ub = x;
    }
    cin >> K;
    do{
        mid=(lb+ub)/2;
        if(split(mid))    lb=mid;
        else    ub=mid;
    }while(ub-lb>0.0000000001);
    printf("%.10lf\n",lb);
    return 0;
}
0