結果

問題 No.2164 Equal Balls
ユーザー tailstails
提出日時 2022-12-15 18:09:55
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 363 bytes
コンパイル時間 5,944 ms
コンパイル使用メモリ 188,536 KB
実行使用メモリ 12,604 KB
最終ジャッジ日時 2024-11-14 08:46:02
合計ジャッジ時間 69,004 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
8,048 KB
testcase_01 AC 11 ms
8,000 KB
testcase_02 AC 14 ms
6,816 KB
testcase_03 AC 10 ms
6,816 KB
testcase_04 AC 14 ms
6,820 KB
testcase_05 AC 19 ms
6,816 KB
testcase_06 AC 18 ms
6,816 KB
testcase_07 AC 16 ms
6,816 KB
testcase_08 AC 241 ms
8,128 KB
testcase_09 AC 193 ms
6,824 KB
testcase_10 AC 117 ms
6,820 KB
testcase_11 AC 433 ms
6,820 KB
testcase_12 AC 254 ms
6,816 KB
testcase_13 AC 182 ms
8,252 KB
testcase_14 AC 225 ms
6,820 KB
testcase_15 AC 417 ms
6,820 KB
testcase_16 AC 231 ms
6,820 KB
testcase_17 AC 78 ms
6,820 KB
testcase_18 AC 314 ms
6,816 KB
testcase_19 WA -
testcase_20 AC 277 ms
6,816 KB
testcase_21 AC 60 ms
6,816 KB
testcase_22 AC 54 ms
6,816 KB
testcase_23 AC 1,209 ms
8,384 KB
testcase_24 WA -
testcase_25 AC 1,024 ms
8,132 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 490 ms
6,820 KB
testcase_30 AC 1,078 ms
7,752 KB
testcase_31 AC 1,423 ms
9,152 KB
testcase_32 WA -
testcase_33 AC 745 ms
6,816 KB
testcase_34 AC 1,048 ms
8,644 KB
testcase_35 AC 208 ms
6,816 KB
testcase_36 WA -
testcase_37 AC 1,614 ms
9,280 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 2,113 ms
8,320 KB
testcase_50 AC 2,160 ms
10,056 KB
testcase_51 AC 2,161 ms
8,320 KB
testcase_52 AC 2,148 ms
8,448 KB
testcase_53 AC 2,134 ms
9,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353
Comb<Mint>c;
ll@n,@m,@a[n],@b[n];
Mint e[m][601];
rep(k,m){
	rep(j,601){
		e[k][j]=1;
	}
}
rep(i,n){
	rep(j,601){
		e[i%m][j]*=c.C(a[i]+b[i],j-300+b[i]);
	}
}
Mint g[1<<16];
g[0]=1;
fft(1<<16,g);
rep(k,m){
	Mint h[1<<16];
	rep(i,601){
		h[i]=e[k][i];
	}
	fft(1<<16,h);
	rep(i,1<<16){
		g[i]*=h[i];
	}
}
fftinv(1<<16,g);
wt(g[m*300]/(1<<16));
0