結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | Yutafu |
提出日時 | 2023-02-02 19:52:34 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 217 ms / 5,000 ms |
コード長 | 590 bytes |
コンパイル時間 | 604 ms |
コンパイル使用メモリ | 75,136 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-02 06:56:39 |
合計ジャッジ時間 | 6,677 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
#include <iostream> #include <vector> #include <iomanip> using namespace std; vector<int> L; long long k; bool check(double x){ long long s = 0; for(int i = 0; i < (int)L.size(); i++) s += L[i] / x; if(s >= k) return true; else return false; } int main(){ int n; cin >> n; L.assign(n, 0); for(int i = 0; i < n; i++) cin >> L[i]; cin >> k; double l = 0, r = 1e18; for(int i = 0; i < 100; i++){ double mid = (l + r) / 2; if(check(mid)) l = mid; else r = mid; } cout << setprecision(20) << l << endl; }