結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー vjudge1vjudge1
提出日時 2024-11-06 21:09:42
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 177 ms / 5,000 ms
コード長 1,167 bytes
コンパイル時間 5,164 ms
コンパイル使用メモリ 274,816 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-11-06 21:09:56
合計ジャッジ時間 9,886 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 175 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 65 ms
6,816 KB
testcase_03 AC 125 ms
6,816 KB
testcase_04 AC 167 ms
6,816 KB
testcase_05 AC 171 ms
6,820 KB
testcase_06 AC 170 ms
6,816 KB
testcase_07 AC 173 ms
6,944 KB
testcase_08 AC 172 ms
6,820 KB
testcase_09 AC 173 ms
6,820 KB
testcase_10 AC 153 ms
6,824 KB
testcase_11 AC 161 ms
6,816 KB
testcase_12 AC 146 ms
6,820 KB
testcase_13 AC 158 ms
6,820 KB
testcase_14 AC 165 ms
6,816 KB
testcase_15 AC 147 ms
6,816 KB
testcase_16 AC 170 ms
6,820 KB
testcase_17 AC 169 ms
6,820 KB
testcase_18 AC 170 ms
6,824 KB
testcase_19 AC 175 ms
6,816 KB
testcase_20 AC 177 ms
6,964 KB
testcase_21 AC 176 ms
6,824 KB
testcase_22 AC 154 ms
6,816 KB
testcase_23 AC 161 ms
7,296 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 5 ms
6,816 KB
testcase_26 AC 3 ms
6,816 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 30 ms
6,816 KB
testcase_29 AC 16 ms
6,816 KB
testcase_30 AC 5 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 = 1e-10, r = 1e10;
    int cnt = 0;
    while(r-l>eps)
    {
        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