結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー rokahikou1rokahikou1
提出日時 2019-09-08 20:02:27
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 217 ms / 5,000 ms
コード長 776 bytes
コンパイル時間 1,383 ms
コンパイル使用メモリ 83,184 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 12:57:57
合計ジャッジ時間 7,106 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 217 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 80 ms
5,248 KB
testcase_03 AC 153 ms
5,248 KB
testcase_04 AC 189 ms
5,248 KB
testcase_05 AC 188 ms
5,248 KB
testcase_06 AC 190 ms
5,248 KB
testcase_07 AC 212 ms
5,248 KB
testcase_08 AC 211 ms
5,248 KB
testcase_09 AC 210 ms
5,248 KB
testcase_10 AC 170 ms
5,248 KB
testcase_11 AC 179 ms
5,248 KB
testcase_12 AC 164 ms
5,248 KB
testcase_13 AC 194 ms
5,248 KB
testcase_14 AC 201 ms
5,248 KB
testcase_15 AC 179 ms
5,248 KB
testcase_16 AC 188 ms
5,248 KB
testcase_17 AC 188 ms
5,248 KB
testcase_18 AC 188 ms
5,248 KB
testcase_19 AC 211 ms
5,248 KB
testcase_20 AC 212 ms
5,248 KB
testcase_21 AC 211 ms
5,248 KB
testcase_22 AC 169 ms
5,248 KB
testcase_23 AC 179 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 6 ms
5,248 KB
testcase_26 AC 3 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 36 ms
5,248 KB
testcase_29 AC 19 ms
5,248 KB
testcase_30 AC 6 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <string>
#include <iomanip>
#include <map>
#include <set>
#include <cmath>
#include <cstdio>
using namespace std;
#define rep(i,n) for(int (i)=0;(i)<(n);(i)++)
#define FOR(i,m,n) for(int (i)=(m);(i)<(n);(i)++)
#define All(v) (v).begin(),(v).end()
typedef long long ll;

ll calc(double v,vector<ll> &l){
    ll ret = 0;
    rep(i,l.size()){
        ret+=l[i]/v;
    }
    return ret;
}

int main(){
    ll N;cin >> N;
    vector<ll> L(N);
    rep(i,N)cin >> L[i];
    ll K;cin >> K;
    double l=0,r=1e11;
    double m;
    rep(i,100){
        m=(l+r)/2;
        if(calc(m,L)>=K)l=m;
        else r=m;
    }
    cout << fixed << setprecision(12) << m << endl;
    return 0;
}
0