結果

問題 No.210 探し物はどこですか?
ユーザー 沙耶花沙耶花
提出日時 2021-11-04 20:50:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 777 bytes
コンパイル時間 4,436 ms
コンパイル使用メモリ 255,520 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-23 03:38:36
合計ジャッジ時間 37,391 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
6,812 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 21 ms
6,944 KB
testcase_04 AC 21 ms
6,940 KB
testcase_05 AC 21 ms
6,940 KB
testcase_06 AC 21 ms
6,944 KB
testcase_07 AC 21 ms
6,940 KB
testcase_08 AC 21 ms
6,944 KB
testcase_09 AC 23 ms
6,944 KB
testcase_10 AC 22 ms
6,940 KB
testcase_11 AC 22 ms
6,944 KB
testcase_12 AC 21 ms
6,944 KB
testcase_13 AC 183 ms
6,944 KB
testcase_14 AC 180 ms
6,944 KB
testcase_15 AC 181 ms
6,940 KB
testcase_16 AC 181 ms
6,944 KB
testcase_17 AC 180 ms
6,944 KB
testcase_18 AC 179 ms
6,940 KB
testcase_19 AC 179 ms
6,944 KB
testcase_20 AC 178 ms
6,940 KB
testcase_21 AC 181 ms
6,944 KB
testcase_22 AC 182 ms
6,944 KB
testcase_23 AC 902 ms
6,944 KB
testcase_24 AC 914 ms
6,944 KB
testcase_25 AC 906 ms
6,940 KB
testcase_26 AC 908 ms
6,940 KB
testcase_27 AC 903 ms
6,940 KB
testcase_28 AC 888 ms
6,940 KB
testcase_29 AC 887 ms
6,944 KB
testcase_30 AC 890 ms
6,940 KB
testcase_31 AC 879 ms
6,944 KB
testcase_32 AC 892 ms
6,944 KB
testcase_33 AC 1,756 ms
6,940 KB
testcase_34 AC 1,783 ms
6,940 KB
testcase_35 AC 1,779 ms
6,940 KB
testcase_36 AC 1,782 ms
6,940 KB
testcase_37 AC 1,773 ms
6,940 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 9 ms
6,944 KB
testcase_44 AC 2 ms
6,944 KB
testcase_45 AC 22 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint1000000007;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000000000
	
int main(){	
	
	int n;
	cin>>n;
	
	vector<float> p(n),q(n);
	rep(i,n){
		cin>>p[i];
		p[i] /= 1000.0;
	}
	rep(i,n){
		cin>>q[i];
		q[i] /= 100.0;
	}
	
	
	
	
	float ans = 0.0;
	float pp = 1.0;
	
	rep(_,460000){
		ans += pp;
		int ind = 0;
		float t = p[ind]*q[ind];
		for(int i=1;i<n;i++){
			if(p[i]*q[i]>t){
				ind = i;
				t = p[i]*q[i];
			}
		}
		
		pp *= 1.0 - t;
		p[ind] *= 1.0-q[ind];
		float ps = 0.0;
		rep(i,n)ps += p[i];
		if(ps<1e-10)break;
		rep(i,n){
			p[i] = p[i] / ps;
		}
	}
	
	cout<<fixed<<setprecision(10)<<ans<<endl;

	return 0;
	
}
0