結果

問題 No.2195 AND Set
ユーザー tailstails
提出日時 2023-01-20 23:24:52
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 418 bytes
コンパイル時間 2,330 ms
コンパイル使用メモリ 174,340 KB
実行使用メモリ 135,936 KB
最終ジャッジ日時 2024-06-23 11:25:12
合計ジャッジ時間 5,557 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
134,528 KB
testcase_01 AC 99 ms
134,400 KB
testcase_02 AC 115 ms
135,424 KB
testcase_03 AC 116 ms
135,552 KB
testcase_04 AC 113 ms
135,552 KB
testcase_05 AC 117 ms
135,680 KB
testcase_06 WA -
testcase_07 AC 117 ms
135,936 KB
testcase_08 AC 119 ms
135,680 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 149 ms
135,680 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

ull s[1<<24];
ll@q,a[30]{},n=0;
rep(q){
	ll@t;
	if(t==1){
		ull@x;
		if(!(s[x>>6]&1ull<<(x&63))){
			s[x>>6]|=1ull<<(x&63);
			rep(i,30){
				a[i]+=!(x&1);
				x>>=1;
			}
			++n;
		}
	}
	if(t==2){
		ull@x;
		if(s[x>>6]&1ull<<(x&63)){
			s[x>>6]^=1ull<<(x&63);
			rep(i,30){
				a[i]-=!(x&1);
				x>>=1;
			}
			--n;
		}
	}
	if(t==3){
		ll z=-1;
		if(n){
			z=0;
			rrep(i,30){
				z=z*2+!a[i];
			}
		}
		wt(z);
	}
}
0