結果

問題 No.766 金魚すくい
ユーザー tailstails
提出日時 2018-12-14 01:07:14
言語 cLay
(20240714-1)
結果
AC  
実行時間 62 ms / 1,500 ms
コード長 381 bytes
コンパイル時間 3,511 ms
コンパイル使用メモリ 181,308 KB
実行使用メモリ 7,680 KB
最終ジャッジ日時 2024-07-05 13:14:52
合計ジャッジ時間 5,871 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,888 KB
testcase_01 AC 6 ms
5,888 KB
testcase_02 AC 6 ms
5,888 KB
testcase_03 AC 6 ms
5,888 KB
testcase_04 AC 5 ms
5,760 KB
testcase_05 AC 6 ms
5,888 KB
testcase_06 AC 6 ms
5,888 KB
testcase_07 AC 7 ms
5,888 KB
testcase_08 AC 6 ms
6,016 KB
testcase_09 AC 5 ms
6,016 KB
testcase_10 AC 7 ms
5,888 KB
testcase_11 AC 6 ms
5,760 KB
testcase_12 AC 6 ms
5,760 KB
testcase_13 AC 7 ms
5,760 KB
testcase_14 AC 6 ms
5,888 KB
testcase_15 AC 6 ms
5,888 KB
testcase_16 AC 7 ms
5,760 KB
testcase_17 AC 6 ms
5,888 KB
testcase_18 AC 6 ms
5,888 KB
testcase_19 AC 6 ms
5,888 KB
testcase_20 AC 7 ms
5,888 KB
testcase_21 AC 6 ms
5,888 KB
testcase_22 AC 7 ms
6,016 KB
testcase_23 AC 59 ms
7,424 KB
testcase_24 AC 58 ms
7,424 KB
testcase_25 AC 61 ms
7,552 KB
testcase_26 AC 58 ms
7,552 KB
testcase_27 AC 61 ms
7,552 KB
testcase_28 AC 58 ms
7,296 KB
testcase_29 AC 58 ms
7,296 KB
testcase_30 AC 59 ms
7,424 KB
testcase_31 AC 62 ms
7,552 KB
testcase_32 AC 58 ms
7,424 KB
testcase_33 AC 31 ms
7,296 KB
testcase_34 AC 31 ms
7,680 KB
testcase_35 AC 19 ms
5,760 KB
testcase_36 AC 18 ms
6,016 KB
testcase_37 AC 57 ms
7,552 KB
testcase_38 AC 58 ms
7,424 KB
testcase_39 AC 57 ms
7,424 KB
testcase_40 AC 57 ms
7,296 KB
testcase_41 AC 55 ms
6,912 KB
testcase_42 AC 53 ms
6,656 KB
testcase_43 AC 6 ms
5,888 KB
testcase_44 AC 6 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll n,m,v[1d5];
mint p,q,r,s;

mint pow(mint a,int i){
     mint b=1;
     while(i){
	if(i&1) b*=a, --i;
	else a*=a, i>>=1;
     }
     return b;
}

{
	combination_mint comb;
	comb.init(3d5);

	rd(n,m,p,v(n));
	std::sort(v,v+n);
	q=100-p;
	p/=100;
	q/=100;

	rep(i,n) r+=pow(p,m)*pow(q,i)*comb.C(m+i-1,i)*s, s+=v[n-i-1];
	rep(j,m) r+=pow(p,j)*pow(q,n)*comb.C(j+n-1,j)*s;

	wt(r);
}
0