結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | recososo |
提出日時 | 2020-02-29 13:39:53 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 216 ms / 5,000 ms |
コード長 | 503 bytes |
コンパイル時間 | 1,849 ms |
コンパイル使用メモリ | 168,528 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 13:10:20 |
合計ジャッジ時間 | 7,608 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; int main(){ int n;cin >> n; vector<ll> a(n); for(int i=0;i<n;i++){ cin >> a[i]; } ll k;cin >> k; double l=0,r=1e10+5; for(int i=0;i<100;i++){ double mid=(l+r)/2; ll t=0; for(int j=0;j<n;j++){ t+=a[j]/mid; } if(t>=k){ l=mid; } else{ r=mid; } } cout << fixed << setprecision(15) << l << endl; }