結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | masa |
提出日時 | 2015-02-15 02:17:44 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 593 bytes |
コンパイル時間 | 483 ms |
コンパイル使用メモリ | 61,644 KB |
実行使用メモリ | 11,804 KB |
最終ジャッジ日時 | 2024-06-23 20:18:51 |
合計ジャッジ時間 | 10,142 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 180 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 69 ms
5,376 KB |
testcase_03 | AC | 133 ms
5,376 KB |
testcase_04 | AC | 161 ms
5,376 KB |
testcase_05 | AC | 159 ms
5,376 KB |
testcase_06 | AC | 161 ms
5,376 KB |
testcase_07 | AC | 182 ms
5,376 KB |
testcase_08 | AC | 181 ms
5,376 KB |
testcase_09 | AC | 184 ms
5,376 KB |
testcase_10 | AC | 143 ms
5,376 KB |
testcase_11 | AC | 152 ms
5,376 KB |
testcase_12 | AC | 141 ms
5,376 KB |
testcase_13 | AC | 166 ms
5,376 KB |
testcase_14 | AC | 174 ms
5,376 KB |
testcase_15 | AC | 153 ms
5,376 KB |
testcase_16 | TLE | - |
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 <cstdio> #include <vector> #include <algorithm> #include <utility> const double EPS = 1e-9; using namespace std; int main() { int n; long long k; cin >> n; vector<double> l(n, 0); for (int i = 0; i < n; i++) { cin >> l[i]; } cin >> k; double upper = 1e9; double lower = 0; double mid; long long count; while (upper - lower > EPS) { mid = (upper + lower) / 2; count = 0; for (int i = 0; i < n; i++) { count += l[i] / mid; } if (count >= k) { lower = mid; } else { upper = mid; } } printf("%.10f\n", mid); return 0; }