結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー vjudge1vjudge1
提出日時 2024-11-07 20:01:05
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 1,259 ms / 5,000 ms
コード長 803 bytes
コンパイル時間 4,432 ms
コンパイル使用メモリ 164,052 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 20:01:39
合計ジャッジ時間 32,195 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,256 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 473 ms
5,248 KB
testcase_03 AC 900 ms
5,248 KB
testcase_04 AC 1,243 ms
5,248 KB
testcase_05 AC 1,241 ms
5,248 KB
testcase_06 AC 1,251 ms
5,248 KB
testcase_07 AC 1,248 ms
5,248 KB
testcase_08 AC 1,249 ms
5,248 KB
testcase_09 AC 1,259 ms
5,248 KB
testcase_10 AC 1,122 ms
5,248 KB
testcase_11 AC 1,180 ms
5,248 KB
testcase_12 AC 1,084 ms
5,248 KB
testcase_13 AC 1,137 ms
5,248 KB
testcase_14 AC 1,187 ms
5,248 KB
testcase_15 AC 1,063 ms
5,248 KB
testcase_16 AC 1,245 ms
5,248 KB
testcase_17 AC 1,241 ms
5,248 KB
testcase_18 AC 1,241 ms
5,248 KB
testcase_19 AC 1,246 ms
5,248 KB
testcase_20 AC 1,258 ms
5,248 KB
testcase_21 AC 1,245 ms
5,248 KB
testcase_22 AC 1,117 ms
5,248 KB
testcase_23 AC 1,193 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 26 ms
5,248 KB
testcase_26 AC 11 ms
5,248 KB
testcase_27 AC 8 ms
5,248 KB
testcase_28 AC 202 ms
5,248 KB
testcase_29 AC 101 ms
5,248 KB
testcase_30 AC 28 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

typedef long long LL;
typedef pair<int, int> PII;

#define ios ios_base::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr);
#define f first
#define s second
#define endl "\n"

const int N=2e5+10;
const double eps =1e-9;

LL n,k;
int a[N];

bool check(long double x)
{
    LL res=0;
    if(x-0<eps)return true;

    for(int i=1;i<=n;i++)
    {
        res+=(LL)floor(1.0*a[i]/x);
    }

    return res>=k;
}

int main()
{
    ios;
    cin>>n;
    for(int i=1;i<=n;i++)cin>>a[i];

    cin>>k;

    long double l=eps,r=1e9;

    while(r>l+1e-9)
    {
        long double mid=(l+r)/2;
        if(check(mid))l=mid;
        else r=mid;
    }

    cout<<fixed<<setprecision(15)<<l<<endl;


    return 0;
}

//rrrbb
//6.666666666666667
//6.6666666666662877
0