結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | ctyl_0 |
提出日時 | 2015-09-06 05:00:22 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,404 bytes |
コンパイル時間 | 770 ms |
コンパイル使用メモリ | 82,800 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-19 04:18:17 |
合計ジャッジ時間 | 5,570 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | RE | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
#include <iostream> #include <iomanip> #include <vector> #include <algorithm> #include <numeric> #include <functional> #include <cmath> #include <queue> #include <stack> #define repd(i,a,b) for (int i=(a);i<(b);i++) #define rep(i,n) repd(i,0,n) typedef long long ll; using namespace std; int inputValue(){ int a; cin >> a; return a; }; void inputArray(int * p, int a){ rep(i, a){ cin >> p[i]; } }; void inputVector(vector<int> * p, int a){ rep(i, a){ int input; cin >> input; p -> push_back(input); } } template <typename T> void output(T a, int precision) { if(precision > 0){ cout << setprecision(precision) << a << "\n"; } else{ cout << a << "\n"; } } ll L[20000] = {0}; int main(int argc, const char * argv[]) { // source code int N = inputValue(); rep(i, N){ L[i] = inputValue(); } ll K = inputValue(); double high = 2.0 * 1e9; double low = 0.0; double mid = 1.0 * 1e9; rep(i, 100){ ll count = 0; rep(j, N){ count += (ll)(L[j] / mid); } if(count >= K){ low = mid; mid = (mid + high) / 2; } if(count < K){ high = mid; mid = (mid + low) / 2; } } output(mid, 25); return 0; }