結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー latte0119latte0119
提出日時 2015-04-30 22:57:28
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 499 bytes
コンパイル時間 1,288 ms
コンパイル使用メモリ 158,180 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-25 23:21:55
合計ジャッジ時間 3,524 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 18 ms
6,944 KB
testcase_03 AC 33 ms
6,940 KB
testcase_04 AC 43 ms
6,940 KB
testcase_05 AC 42 ms
6,944 KB
testcase_06 AC 41 ms
6,940 KB
testcase_07 AC 42 ms
6,940 KB
testcase_08 AC 44 ms
6,944 KB
testcase_09 AC 42 ms
6,940 KB
testcase_10 AC 38 ms
6,940 KB
testcase_11 AC 39 ms
6,940 KB
testcase_12 AC 36 ms
6,940 KB
testcase_13 AC 41 ms
6,944 KB
testcase_14 AC 43 ms
6,940 KB
testcase_15 AC 38 ms
6,944 KB
testcase_16 AC 42 ms
6,940 KB
testcase_17 AC 43 ms
6,944 KB
testcase_18 AC 43 ms
6,944 KB
testcase_19 AC 44 ms
6,944 KB
testcase_20 AC 45 ms
6,940 KB
testcase_21 AC 44 ms
6,944 KB
testcase_22 AC 39 ms
6,940 KB
testcase_23 AC 40 ms
6,940 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 8 ms
6,940 KB
testcase_29 AC 5 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:18:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   18 |     scanf("%d",&N);
      |     ~~~~~^~~~~~~~~
main.cpp:19:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   19 |     for(int i=0;i<N;i++)scanf("%d",&L[i]);
      |                         ~~~~~^~~~~~~~~~~~
main.cpp:20:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |     scanf("%lld",&K);
      |     ~~~~~^~~~~~~~~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

typedef long long ll;


int N;
int L[200000];
ll K;

ll f(double x){
    double d=1.0/x;
    ll ret=0;
    for(int i=0;i<N;i++)ret+=(ll)(L[i]*d);
    return ret;
}
int main(){
    scanf("%d",&N);
    for(int i=0;i<N;i++)scanf("%d",&L[i]);
    scanf("%lld",&K);

    double lb=0,ub=1e10;
    for(int i=0;i<100;i++){
        double mid=(ub+lb)/2;
        if(f(mid)>=K)lb=mid;
        else ub=mid;
    }
    printf("%.10lf\n",(ub+lb)/2);

    return 0;

}
0