結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | Lay_ec |
提出日時 | 2014-11-17 00:04:45 |
言語 | C++11 (gcc 13.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 728 bytes |
コンパイル時間 | 743 ms |
コンパイル使用メモリ | 81,324 KB |
実行使用メモリ | 13,772 KB |
最終ジャッジ日時 | 2025-01-01 19:55:33 |
合計ジャッジ時間 | 64,128 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 90 ms
10,532 KB |
testcase_01 | AC | 1 ms
11,044 KB |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | AC | 154 ms
11,428 KB |
testcase_05 | AC | 152 ms
11,428 KB |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | AC | 158 ms
11,552 KB |
testcase_11 | AC | 146 ms
6,816 KB |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 71 ms
6,816 KB |
testcase_19 | AC | 96 ms
6,816 KB |
testcase_20 | AC | 94 ms
6,816 KB |
testcase_21 | AC | 100 ms
6,816 KB |
testcase_22 | AC | 73 ms
6,820 KB |
testcase_23 | AC | 69 ms
6,816 KB |
testcase_24 | AC | 1 ms
6,820 KB |
testcase_25 | AC | 5 ms
6,816 KB |
testcase_26 | AC | 3 ms
6,816 KB |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | AC | 31 ms
6,816 KB |
testcase_29 | AC | 17 ms
6,820 KB |
testcase_30 | AC | 5 ms
11,424 KB |
コンパイルメッセージ
In file included from /usr/include/stdio.h:980, from /usr/include/c++/13/cstdio:42, from /usr/include/c++/13/ext/string_conversions.h:45, from /usr/include/c++/13/bits/basic_string.h:4109, from /usr/include/c++/13/string:54, from /usr/include/c++/13/bits/locale_classes.h:40, from /usr/include/c++/13/bits/ios_base.h:41, from /usr/include/c++/13/ios:44, from /usr/include/c++/13/ostream:40, from /usr/include/c++/13/iostream:41, from main.cpp:1: In function ‘int printf(const char*, ...)’, inlined from ‘int main()’ at main.cpp:47:9: /usr/include/x86_64-linux-gnu/bits/stdio2.h:86:23: warning: ‘m’ may be used uninitialized [-Wmaybe-uninitialized] 86 | return __printf_chk (__USE_FORTIFY_LEVEL - 1, __fmt, __va_arg_pack ()); | ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp: In function ‘int main()’: main.cpp:31:37: note: ‘m’ was declared here 31 | double l=0,r=L[n-1],m; | ^
ソースコード
#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-12){ unsigned long 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; }