結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー 古寺いろは古寺いろは
提出日時 2015-04-13 08:02:54
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 835 ms / 5,000 ms
コード長 528 bytes
コンパイル時間 1,453 ms
コンパイル使用メモリ 167,528 KB
実行使用メモリ 69,332 KB
最終ジャッジ日時 2024-07-04 14:12:37
合計ジャッジ時間 17,489 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 826 ms
69,204 KB
testcase_01 AC 832 ms
69,208 KB
testcase_02 AC 833 ms
69,332 KB
testcase_03 AC 828 ms
69,204 KB
testcase_04 AC 835 ms
69,204 KB
testcase_05 AC 820 ms
69,316 KB
testcase_06 AC 823 ms
69,096 KB
testcase_07 AC 828 ms
69,296 KB
testcase_08 AC 805 ms
69,104 KB
testcase_09 AC 815 ms
69,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

vector<double> num;

int main(){
	int N;
	cin >> N;
	vector<int> L(N);
	for (int i = 0; i < N; i++)
	{
		cin >> L[i];
	}
	sort(L.begin(), L.end());
	reverse(L.begin(), L.end());

	for (int i = 0; i < N; i++)
	{
		for (int j = 0; j <= 500001 / (i + 1); j++)
		{
			num.push_back(L[i] / (j + 1.0));
		}
	}

	sort(num.begin(), num.end());
	reverse(num.begin(), num.end());

	int Q;
	cin >> Q;
	for (int i = 0; i < Q; i++)
	{
		int K;
		cin >> K;
		printf("%.14f\n", num[K - 1]);
	}

}
0