結果

問題 No.2206 Popcount Sum 2
ユーザー tailstails
提出日時 2023-02-06 10:54:24
言語 cLay
(20240714-1)
結果
AC  
実行時間 2,721 ms / 4,000 ms
コード長 387 bytes
コンパイル時間 8,990 ms
コンパイル使用メモリ 225,288 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-07-04 16:16:28
合計ジャッジ時間 45,060 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 131 ms
5,760 KB
testcase_03 AC 137 ms
5,760 KB
testcase_04 AC 141 ms
5,760 KB
testcase_05 AC 2,721 ms
21,632 KB
testcase_06 AC 2,649 ms
21,632 KB
testcase_07 AC 2,689 ms
21,760 KB
testcase_08 AC 2,593 ms
21,632 KB
testcase_09 AC 2,651 ms
21,632 KB
testcase_10 AC 2,432 ms
21,760 KB
testcase_11 AC 2,443 ms
21,632 KB
testcase_12 AC 2,452 ms
21,632 KB
testcase_13 AC 2,297 ms
21,760 KB
testcase_14 AC 2,339 ms
21,760 KB
testcase_15 AC 2,297 ms
21,632 KB
testcase_16 AC 1,695 ms
21,632 KB
testcase_17 AC 1,756 ms
21,632 KB
testcase_18 AC 1,702 ms
21,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353

Comb<Mint>h;

ll@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);

ll 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))/2;
	}
	while(c<f){
		++c;
		z+=h.C(b,c);
	}
	r[a[i]]=z*(Mint(2)**(b+1)-1);
}
wtLn(r(t));
0