結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー vjudge1vjudge1
提出日時 2024-11-06 21:11:34
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 172 ms / 5,000 ms
コード長 1,148 bytes
コンパイル時間 3,707 ms
コンパイル使用メモリ 275,112 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-06 21:11:45
合計ジャッジ時間 9,558 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 68 ms
6,820 KB
testcase_03 AC 124 ms
6,820 KB
testcase_04 AC 165 ms
6,816 KB
testcase_05 AC 167 ms
6,820 KB
testcase_06 AC 171 ms
6,816 KB
testcase_07 AC 171 ms
6,820 KB
testcase_08 AC 170 ms
6,820 KB
testcase_09 AC 172 ms
6,820 KB
testcase_10 AC 153 ms
6,816 KB
testcase_11 AC 158 ms
6,820 KB
testcase_12 AC 144 ms
6,820 KB
testcase_13 AC 156 ms
6,820 KB
testcase_14 AC 164 ms
6,816 KB
testcase_15 AC 144 ms
6,816 KB
testcase_16 AC 166 ms
6,820 KB
testcase_17 AC 167 ms
6,820 KB
testcase_18 AC 167 ms
6,820 KB
testcase_19 AC 168 ms
6,820 KB
testcase_20 AC 172 ms
6,816 KB
testcase_21 AC 170 ms
6,816 KB
testcase_22 AC 153 ms
6,816 KB
testcase_23 AC 157 ms
6,820 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 6 ms
6,820 KB
testcase_26 AC 4 ms
6,816 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 31 ms
6,816 KB
testcase_29 AC 16 ms
6,816 KB
testcase_30 AC 6 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
// #include<bits/extc++.h>
#define endl '\n'
#define eps 1e-10
#define pb push_back
#define eb emplace_back
#define debug(x) cerr<<#x<<": "<<x<<'\n';
// using namespace __gnu_pbds;
using namespace std;
using ll = long long;
using ld = long double;
using pll = pair <ll,ll>;
using pii = pair <int,int>;
using ull = unsigned long long;
const int N = 1e6 + 5, MOD = 1e9 + 7;
mt19937_64 rnd (chrono::steady_clock::now().time_since_epoch().count());
int n;
ll k, a[N];
bool ck(ld x)
{
    ll have = 0;
    if(x-0<eps) return true;
    for(int i=1;i<=n;i++) have += (ll)floor(a[i]*1.0/x);
    return have >= k;
}
void isac()
{
    cin>>n;
    for(int i=1;i<=n;i++) cin>>a[i];
    cin>>k;
    ld l = eps, r = 1e10;
    while(l+eps<r)
    {
        ld mid = (l + r)/2;
        if(ck(mid)) l = mid;
        else r = mid; 
    }
    cout<<fixed<<setprecision(15)<<l<<'\n';
}
int main(void)
{
    ios::sync_with_stdio(0);
    cin.tie(0), cout.tie(0);
    int T = 1;
    // cin >> T;
    while (T--) isac();
    return 0;
}
/*
    Zena youth together.
    Such a pretty name.
    There will be a long story.
    Time will tell all.
*/
0