結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | yukke428 |
提出日時 | 2020-05-03 00:28:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 959 bytes |
コンパイル時間 | 933 ms |
コンパイル使用メモリ | 86,136 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-10 15:04:56 |
合計ジャッジ時間 | 31,472 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,230 ms
6,820 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1,284 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 1,226 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1,044 ms
6,944 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 1,064 ms
6,940 KB |
testcase_16 | AC | 1,219 ms
6,944 KB |
testcase_17 | AC | 1,204 ms
6,940 KB |
testcase_18 | AC | 1,185 ms
6,944 KB |
testcase_19 | AC | 1,229 ms
6,940 KB |
testcase_20 | AC | 1,235 ms
6,940 KB |
testcase_21 | AC | 1,242 ms
6,940 KB |
testcase_22 | AC | 1,092 ms
6,940 KB |
testcase_23 | AC | 1,159 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,944 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 8 ms
6,940 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <functional> #include <vector> #include <set> #include <map> #include <stack> #include <queue> #include <string> #include <numeric> #include <cmath> #define rep(i, n) for (int i = 0; i < n; i++) using namespace std; typedef long long ll; using P = pair<ll, ll>; template<class T> inline bool chmin(T& a,T b) {if (a > b) {a = b; return true;} return false;} template<class T> inline bool chmax(T& a,T b) {if (a < b) {a = b; return true;} return false;} const ll MOD = 1000000007; const int INF = 1<<29; //const ll INF = (ll)1e18 + 1; int N, K; vector<int> L; bool c(double x){ int sum = 0; rep(i, N){ sum += L[i] / x; } return sum >= K; } int main(){ cin >> N; L = vector<int>(N); rep(i, N) cin >> L[i]; cin >> K; double left = 0, right = 1e10+1; rep(i, 1000){ double mid = (right + left) / 2; if (c(mid)) left = mid; else right = mid; } printf("%.9f\n", left); }