結果

問題 No.2164 Equal Balls
ユーザー tailstails
提出日時 2022-12-15 17:23:07
言語 cLay
(20240714-1)
結果
TLE  
実行時間 -
コード長 271 bytes
コンパイル時間 6,953 ms
コンパイル使用メモリ 193,816 KB
実行使用メモリ 25,544 KB
最終ジャッジ日時 2024-11-14 07:56:37
合計ジャッジ時間 193,082 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
19,260 KB
testcase_01 AC 58 ms
20,340 KB
testcase_02 AC 113 ms
19,280 KB
testcase_03 AC 59 ms
21,260 KB
testcase_04 AC 113 ms
21,100 KB
testcase_05 AC 166 ms
17,152 KB
testcase_06 AC 168 ms
16,888 KB
testcase_07 AC 140 ms
17,012 KB
testcase_08 AC 3,164 ms
22,384 KB
testcase_09 AC 2,581 ms
22,968 KB
testcase_10 AC 1,504 ms
24,608 KB
testcase_11 TLE -
testcase_12 AC 3,290 ms
15,580 KB
testcase_13 AC 2,402 ms
23,436 KB
testcase_14 AC 2,971 ms
17,444 KB
testcase_15 TLE -
testcase_16 AC 3,009 ms
10,744 KB
testcase_17 AC 967 ms
14,980 KB
testcase_18 AC 4,130 ms
22,000 KB
testcase_19 TLE -
testcase_20 AC 3,643 ms
23,388 KB
testcase_21 AC 710 ms
22,252 KB
testcase_22 AC 634 ms
9,188 KB
testcase_23 AC 3,028 ms
12,732 KB
testcase_24 TLE -
testcase_25 AC 1,675 ms
10,868 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 2,556 ms
9,220 KB
testcase_30 TLE -
testcase_31 AC 2,703 ms
11,688 KB
testcase_32 TLE -
testcase_33 AC 1,728 ms
9,996 KB
testcase_34 AC 3,227 ms
12,496 KB
testcase_35 AC 410 ms
8,544 KB
testcase_36 TLE -
testcase_37 AC 2,388 ms
13,776 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 AC 2,237 ms
12,964 KB
testcase_50 AC 2,243 ms
12,304 KB
testcase_51 AC 2,289 ms
12,312 KB
testcase_52 AC 2,291 ms
12,444 KB
testcase_53 AC 2,258 ms
25,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353
Comb<Mint>c;
ll@n,@m,@a[n],@b[n];
Mint e[m][1024];
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<<17];
g[0]=1;
rep(k,m){
	convolution(g,1<<17,e[k],1024,g,1<<17);
}
wt(g[m*300]);
0