結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | vjudge1 |
提出日時 | 2024-11-06 22:09:26 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 783 bytes |
コンパイル時間 | 4,835 ms |
コンパイル使用メモリ | 162,916 KB |
実行使用メモリ | 6,912 KB |
最終ジャッジ日時 | 2024-11-06 22:10:20 |
合計ジャッジ時間 | 43,525 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,640 ms
6,784 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 | 1,633 ms
6,784 KB |
testcase_18 | AC | 1,632 ms
6,656 KB |
testcase_19 | AC | 1,634 ms
6,784 KB |
testcase_20 | AC | 1,648 ms
6,656 KB |
testcase_21 | AC | 1,634 ms
6,912 KB |
testcase_22 | AC | 1,470 ms
6,272 KB |
testcase_23 | AC | 1,558 ms
6,528 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
#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 <= 1000; 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(); } }