結果

問題 No.210 探し物はどこですか?
ユーザー 唐澤貴洋唐澤貴洋
提出日時 2015-10-15 22:29:28
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 841 bytes
コンパイル時間 564 ms
コンパイル使用メモリ 69,796 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2024-07-21 16:38:07
合計ジャッジ時間 10,014 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
6,016 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 244 ms
6,016 KB
testcase_04 AC 190 ms
6,016 KB
testcase_05 AC 88 ms
6,016 KB
testcase_06 AC 77 ms
6,144 KB
testcase_07 AC 173 ms
5,888 KB
testcase_08 AC 10 ms
6,144 KB
testcase_09 AC 9 ms
5,760 KB
testcase_10 AC 9 ms
5,888 KB
testcase_11 AC 10 ms
5,888 KB
testcase_12 AC 8 ms
6,016 KB
testcase_13 AC 47 ms
6,144 KB
testcase_14 AC 76 ms
6,272 KB
testcase_15 AC 51 ms
6,272 KB
testcase_16 AC 48 ms
6,272 KB
testcase_17 AC 631 ms
6,144 KB
testcase_18 AC 48 ms
6,016 KB
testcase_19 AC 49 ms
6,144 KB
testcase_20 AC 48 ms
6,016 KB
testcase_21 AC 50 ms
6,144 KB
testcase_22 AC 48 ms
6,144 KB
testcase_23 AC 184 ms
6,016 KB
testcase_24 AC 182 ms
6,272 KB
testcase_25 AC 182 ms
6,144 KB
testcase_26 AC 181 ms
6,144 KB
testcase_27 AC 180 ms
6,144 KB
testcase_28 AC 176 ms
6,016 KB
testcase_29 AC 173 ms
6,016 KB
testcase_30 AC 176 ms
5,888 KB
testcase_31 AC 174 ms
6,144 KB
testcase_32 AC 175 ms
6,144 KB
testcase_33 AC 348 ms
6,016 KB
testcase_34 AC 345 ms
6,144 KB
testcase_35 AC 349 ms
6,144 KB
testcase_36 AC 347 ms
6,016 KB
testcase_37 AC 348 ms
5,888 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 6 ms
6,016 KB
testcase_44 AC 9 ms
5,888 KB
testcase_45 AC 213 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<set>
#include<map>
#include<list>
#include<stack>
#include<queue>
#include<bitset>
#include<array>
#include<algorithm>
#include<cstdio>
#include<string>
#include<cstdlib>
#include<numeric>
#define D long long
#define U unsigned
#define SHIKOU 300000
using namespace std;
D n, m,a, b, d, e, x, y, z;
D i, j, k;
char c,f;
string s;
double p[1000], q[1000];
double kitai[SHIKOU];
double ans;
int main() {
	D t;
	cin >> a;
	for (i = 0; i < a; i++) {
		cin >> p[i];
		p[i] /= 1000.0;
	}
	for (i = 0; i < a; i++) {
		cin >> q[i];
		q[i] /= 100.0;
	}
	for (i = 0; i < SHIKOU; i++) {
		b = 0;
		for (j = 1; j < a; j++) {
			if (p[j]*q[j] > p[b]*q[b])
				b = j;
		}
		kitai[i] +=(p[b] * q[b]);
		p[b] *=1.0 - q[b];
	}
	for (i = 0; i < SHIKOU; i++)
		ans += (double)i*kitai[i];
	printf("%.6f\n", ans+1);
}
0