結果

問題 No.2171 OR Assignment
ユーザー tailstails
提出日時 2022-12-23 15:04:52
言語 cLay
(20241019-1)
結果
AC  
実行時間 2,513 ms / 3,500 ms
コード長 341 bytes
コンパイル時間 5,061 ms
コンパイル使用メモリ 183,212 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-18 07:04:19
合計ジャッジ時間 31,095 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353
map<ll,Mint>m1;
m1[0]=1;
ll@n;
rep(n){
	map<ll,Mint>m2;
	m2.clear();
	ll@a;
	for(auto x:m1){
		ll b=a;
		m2[b]+=x.second;
		for(auto y:m1){
			if((x.first|y.first)!=x.first){
				break;
			}
			if((b|y.first)!=b){
				b|=y.first;
				m2[b]+=x.second;
			}
		}
	}
	m1=m2;
}
Mint z;
for(auto x:m1){
	z+=x.second;
}
wt(z);
0