結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 180 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 70 ms
5,376 KB
testcase_03 AC 132 ms
5,376 KB
testcase_04 AC 160 ms
5,376 KB
testcase_05 AC 160 ms
5,376 KB
testcase_06 AC 159 ms
5,376 KB
testcase_07 AC 180 ms
5,376 KB
testcase_08 AC 178 ms
5,376 KB
testcase_09 AC 183 ms
5,376 KB
testcase_10 AC 143 ms
5,376 KB
testcase_11 AC 152 ms
5,376 KB
testcase_12 AC 139 ms
5,376 KB
testcase_13 AC 165 ms
5,376 KB
testcase_14 AC 173 ms
5,376 KB
testcase_15 AC 155 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 -- -
権限があれば一括ダウンロードができます

ソースコード

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) {
		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