結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | Lay_ec |
提出日時 | 2014-11-17 00:08:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 714 bytes |
コンパイル時間 | 1,035 ms |
コンパイル使用メモリ | 78,684 KB |
実行使用メモリ | 11,548 KB |
最終ジャッジ日時 | 2024-06-10 08:56:41 |
合計ジャッジ時間 | 9,475 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 91 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 69 ms
6,940 KB |
testcase_03 | AC | 132 ms
6,944 KB |
testcase_04 | AC | 158 ms
6,940 KB |
testcase_05 | AC | 156 ms
6,944 KB |
testcase_06 | AC | 159 ms
6,940 KB |
testcase_07 | AC | 180 ms
6,940 KB |
testcase_08 | AC | 183 ms
6,940 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
#include <iostream> #include <string> #include <vector> #include <cmath> #include <algorithm> #include <cstdlib> #include <ctime> #include <cstdio> #include <functional> #include <set> #include <sstream> #include <cctype> using namespace std; int main(){ long n,k; cin>>n; vector<long> L(n); for(long i=0;i<n;i++) cin>>L[i]; cin>>k; sort(L.begin(),L.end()); if(n>=k) cout<<L[n-k]; else{ double l=0,r=L[n-1],m; while((r-l)>1e-10){ long num=0; m=(l+r)/2.0; for(long i=0;i<n;i++) num+=floor(L[i]/m); // cout<<"m="<<m<<"->"<<num<<endl; if(num<k) r=m; else{ l=m; } } printf("%.16f\n",m); } return 0; }