結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー RonlynesRonlynes
提出日時 2017-06-29 16:21:12
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 214 ms / 5,000 ms
コード長 573 bytes
コンパイル時間 650 ms
コンパイル使用メモリ 54,244 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 12:13:50
合計ジャッジ時間 6,501 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 80 ms
5,248 KB
testcase_03 AC 148 ms
5,248 KB
testcase_04 AC 183 ms
5,248 KB
testcase_05 AC 184 ms
5,248 KB
testcase_06 AC 184 ms
5,248 KB
testcase_07 AC 206 ms
5,248 KB
testcase_08 AC 208 ms
5,248 KB
testcase_09 AC 205 ms
5,248 KB
testcase_10 AC 166 ms
5,248 KB
testcase_11 AC 179 ms
5,248 KB
testcase_12 AC 160 ms
5,248 KB
testcase_13 AC 190 ms
5,248 KB
testcase_14 AC 195 ms
5,248 KB
testcase_15 AC 175 ms
5,248 KB
testcase_16 AC 183 ms
5,248 KB
testcase_17 AC 185 ms
5,248 KB
testcase_18 AC 183 ms
5,248 KB
testcase_19 AC 205 ms
5,248 KB
testcase_20 AC 207 ms
5,248 KB
testcase_21 AC 207 ms
5,248 KB
testcase_22 AC 168 ms
5,248 KB
testcase_23 AC 177 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 6 ms
5,248 KB
testcase_26 AC 4 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 35 ms
5,248 KB
testcase_29 AC 18 ms
5,248 KB
testcase_30 AC 6 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
using namespace std;

int n, l[200005];
long long k;

bool C(double x){
    long long sum=0;
    for(int i=0; i<n; i++){
        sum += l[i] / x;
    }
    return sum >= k;
}
int main(void){
    cin >> n;
    for(int i=0; i<n; i++){
        cin >> l[i];
    }
    cin >> k;
    double left = 0;
    double right = 10000000010;
    for(int i=0; i<100; i++){
        double mid = (left+right)/2;
        if(C(mid)){
            left = mid;
        }else{
            right = mid;
        }
    }
    printf("%.10f",left);
    return 0;
}
0