結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー masamasa
提出日時 2015-02-15 02:26:34
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 622 bytes
コンパイル時間 618 ms
コンパイル使用メモリ 62,348 KB
実行使用メモリ 11,808 KB
最終ジャッジ日時 2024-06-23 20:19:48
合計ジャッジ時間 10,452 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 184 ms
6,820 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 71 ms
6,944 KB
testcase_03 AC 134 ms
6,944 KB
testcase_04 AC 160 ms
6,940 KB
testcase_05 AC 161 ms
6,940 KB
testcase_06 AC 163 ms
6,940 KB
testcase_07 AC 185 ms
6,944 KB
testcase_08 AC 185 ms
6,940 KB
testcase_09 AC 187 ms
6,944 KB
testcase_10 AC 148 ms
6,940 KB
testcase_11 AC 155 ms
6,944 KB
testcase_12 AC 142 ms
6,944 KB
testcase_13 AC 169 ms
6,940 KB
testcase_14 AC 176 ms
6,944 KB
testcase_15 AC 158 ms
6,944 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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 && upper > lower * (EPS * 1)) {
		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;
}
0