結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | autumn-eel |
提出日時 | 2017-12-16 12:44:33 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 159 ms / 5,000 ms |
コード長 | 353 bytes |
コンパイル時間 | 1,825 ms |
コンパイル使用メモリ | 165,380 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 12:29:50 |
合計ジャッジ時間 | 6,746 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
#include <bits/stdc++.h> #define rep(i,n)for(int i=0;i<(n);i++) using namespace std; typedef long long ll; int L[200000]; int main(){ int n;scanf("%d",&n); rep(i,n)scanf("%d",&L[i]); ll k;scanf("%lld",&k); double l=0,r=1e9; rep(i,100){ double t=(l+r)/2; ll cnt=0; rep(j,n)cnt+=L[j]/t; if(cnt>=k)l=t; else r=t; } printf("%.12lf\n",l); }