結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー vjudge1vjudge1
提出日時 2024-11-06 22:08:50
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 782 bytes
コンパイル時間 2,395 ms
コンパイル使用メモリ 163,292 KB
実行使用メモリ 8,516 KB
最終ジャッジ日時 2024-11-06 22:09:01
合計ジャッジ時間 8,584 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 211 ms
8,516 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 204 ms
7,128 KB
testcase_18 AC 203 ms
7,408 KB
testcase_19 AC 206 ms
8,020 KB
testcase_20 AC 208 ms
6,940 KB
testcase_21 AC 208 ms
7,452 KB
testcase_22 AC 183 ms
6,820 KB
testcase_23 AC 193 ms
7,084 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
#define double long double
const int N = 1e6 + 10;
double a[N];
int n;
int k;

bool cheak(double x)
{
    int res = 0;
    for (int i = 1; i <= n; i++)
    {
        res += (a[i] / x);
        //cout << res << endl;
    }
    
    return res >= k;
}

void solve() {
    cout << fixed << setprecision(15);
    cin >> n;
    for (int i = 1; i <= n; i++)cin >> a[i];
    cin >> k;
    double l = 0.0, r = 6e18 + 10;
    for (int i = 1; i <= 100; i++)
    {
        int mid = (l + r) / 2;
        if (cheak(mid)) l = mid;
        else r = mid;
    }
    cout << l << endl;
}


signed main()
{
    ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
    int T = 1; //cin >> T;
    while (T--) {
        solve();

    }


}
0