結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | ciel |
提出日時 | 2014-11-16 23:33:26 |
言語 | C++11 (gcc 13.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 401 bytes |
コンパイル時間 | 497 ms |
コンパイル使用メモリ | 37,024 KB |
実行使用メモリ | 11,172 KB |
最終ジャッジ日時 | 2024-12-31 21:43:10 |
合計ジャッジ時間 | 51,855 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 108 ms
11,044 KB |
testcase_01 | AC | 1 ms
11,172 KB |
testcase_02 | AC | 47 ms
11,044 KB |
testcase_03 | AC | 88 ms
11,040 KB |
testcase_04 | AC | 118 ms
11,044 KB |
testcase_05 | AC | 118 ms
11,040 KB |
testcase_06 | AC | 118 ms
10,912 KB |
testcase_07 | AC | 120 ms
6,824 KB |
testcase_08 | AC | 121 ms
6,816 KB |
testcase_09 | AC | 118 ms
6,820 KB |
testcase_10 | AC | 107 ms
6,816 KB |
testcase_11 | AC | 112 ms
6,816 KB |
testcase_12 | AC | 102 ms
6,816 KB |
testcase_13 | AC | 109 ms
6,820 KB |
testcase_14 | AC | 116 ms
6,820 KB |
testcase_15 | AC | 101 ms
6,820 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | AC | 1 ms
6,820 KB |
testcase_25 | AC | 4 ms
6,820 KB |
testcase_26 | AC | 2 ms
6,816 KB |
testcase_27 | AC | 2 ms
6,820 KB |
testcase_28 | AC | 21 ms
6,820 KB |
testcase_29 | AC | 11 ms
6,816 KB |
testcase_30 | AC | 4 ms
11,172 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:6:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | scanf("%d",&n); | ~~~~~^~~~~~~~~ main.cpp:9:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | scanf("%lf",&v[i]); | ~~~~~^~~~~~~~~~~~~ main.cpp:11:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | scanf("%lld",&k); | ~~~~~^~~~~~~~~~~
ソースコード
#include <vector> #include <cstdio> int main(){ int n; long long k; scanf("%d",&n); std::vector<double>v(n); for(int i=0;i<n;i++){ scanf("%lf",&v[i]); } scanf("%lld",&k); double mi=0,ma=1e9; for(;mi+1e-10<ma;){ long long _n=0; double h=(mi+ma)/2; for(int i=0;i<n;i++){ _n+=v[i]/h; } if(_n>=k){ mi=h; }else{ ma=h; } } printf("%.10f\n",mi); }