結果

問題 No.2206 Popcount Sum 2
ユーザー tailstails
提出日時 2023-02-06 11:20:23
言語 cLay
(20240714-1)
結果
AC  
実行時間 587 ms / 4,000 ms
コード長 402 bytes
コンパイル時間 8,146 ms
コンパイル使用メモリ 227,464 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-07-04 16:31:15
合計ジャッジ時間 16,850 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 119 ms
5,888 KB
testcase_03 AC 132 ms
5,888 KB
testcase_04 AC 133 ms
5,760 KB
testcase_05 AC 587 ms
14,848 KB
testcase_06 AC 561 ms
14,848 KB
testcase_07 AC 548 ms
14,848 KB
testcase_08 AC 520 ms
14,848 KB
testcase_09 AC 513 ms
14,720 KB
testcase_10 AC 347 ms
14,592 KB
testcase_11 AC 353 ms
14,848 KB
testcase_12 AC 353 ms
14,720 KB
testcase_13 AC 358 ms
14,600 KB
testcase_14 AC 363 ms
14,720 KB
testcase_15 AC 365 ms
14,848 KB
testcase_16 AC 334 ms
14,848 KB
testcase_17 AC 331 ms
14,848 KB
testcase_18 AC 332 ms
14,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353

Comb<Mint>h;

int@t,n[t],m[],o[],a[],r[];
rd((n,m)(t));
rep(i,t)o[i]=n[i]/450;
sortA_index(t,o,m,n,a);

int b=0,c=0;
Mint z=1;

rep(i,t){
	ll e=n[i]-1;
	ll f=m[i]-1;
	if(f<c){
		z=1;
		c=0;
		b=e;
	}
	while(b<e){
		z=z*2-h.C(b,c);
		++b;
	}
	while(b>e){
		--b;
		z=(z+h.C(b,c))*(int)(MD+1>>1);
	}
	while(c<f){
		++c;
		z+=h.C(b,c);
	}
	r[a[i]]=z*(Mint(2)**(b+1)-1);
}
wtLn(r(t));
0