結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー vjudge1vjudge1
提出日時 2024-11-06 22:11:52
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 876 bytes
コンパイル時間 4,385 ms
コンパイル使用メモリ 162,272 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-11-06 22:13:12
合計ジャッジ時間 77,515 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,236 ms
6,912 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 3,227 ms
6,784 KB
testcase_18 AC 3,227 ms
6,656 KB
testcase_19 AC 3,244 ms
6,656 KB
testcase_20 AC 3,259 ms
6,656 KB
testcase_21 AC 3,232 ms
6,784 KB
testcase_22 AC 2,915 ms
6,400 KB
testcase_23 AC 3,068 ms
6,656 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 endl '\n'
#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 <= 2000; i++)
    {
        
        int mid = (l + r) / 2;
        if (mid < 0.000000000001)cout << 0.0000000000001 << endl;
        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