結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー focusfocus
提出日時 2018-01-12 15:38:56
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 1,751 ms / 5,000 ms
コード長 627 bytes
コンパイル時間 694 ms
コンパイル使用メモリ 62,900 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-08 12:35:58
合計ジャッジ時間 32,950 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,355 ms
5,452 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 506 ms
5,248 KB
testcase_03 AC 965 ms
5,456 KB
testcase_04 AC 1,326 ms
5,452 KB
testcase_05 AC 1,356 ms
5,372 KB
testcase_06 AC 1,751 ms
5,452 KB
testcase_07 AC 1,353 ms
5,580 KB
testcase_08 AC 1,336 ms
5,448 KB
testcase_09 AC 1,348 ms
5,456 KB
testcase_10 AC 1,182 ms
5,452 KB
testcase_11 AC 1,250 ms
5,580 KB
testcase_12 AC 1,139 ms
5,580 KB
testcase_13 AC 1,225 ms
5,576 KB
testcase_14 AC 1,275 ms
5,576 KB
testcase_15 AC 1,120 ms
5,396 KB
testcase_16 AC 1,333 ms
5,448 KB
testcase_17 AC 1,307 ms
6,816 KB
testcase_18 AC 1,324 ms
6,820 KB
testcase_19 AC 1,343 ms
6,816 KB
testcase_20 AC 1,342 ms
6,816 KB
testcase_21 AC 1,330 ms
6,816 KB
testcase_22 AC 1,200 ms
6,816 KB
testcase_23 AC 1,252 ms
6,816 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 28 ms
6,816 KB
testcase_26 AC 11 ms
6,816 KB
testcase_27 AC 9 ms
6,816 KB
testcase_28 AC 220 ms
6,820 KB
testcase_29 AC 109 ms
6,820 KB
testcase_30 AC 30 ms
6,816 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;
    int limit=1000;
    do{
        mid=(lb+ub)/2;
        if(split(mid))    lb=mid;
        else    ub=mid;
    }while(limit--);
    printf("%.10lf\n",lb);
    return 0;
}
0