結果

問題 No.2071 Shift and OR
ユーザー tailstails
提出日時 2022-09-16 23:19:01
言語 cLay
(20240714-1)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 181,700 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-12-21 22:56:33
合計ジャッジ時間 7,131 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 11 ms
5,248 KB
testcase_03 AC 148 ms
7,424 KB
testcase_04 AC 52 ms
6,528 KB
testcase_05 AC 195 ms
7,296 KB
testcase_06 AC 80 ms
7,296 KB
testcase_07 AC 24 ms
5,376 KB
testcase_08 AC 39 ms
5,760 KB
testcase_09 AC 74 ms
7,040 KB
testcase_10 AC 73 ms
7,168 KB
testcase_11 AC 236 ms
7,552 KB
testcase_12 AC 352 ms
8,448 KB
testcase_13 AC 182 ms
7,552 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 213 ms
7,424 KB
testcase_16 AC 201 ms
7,552 KB
testcase_17 AC 196 ms
7,296 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 210 ms
7,552 KB
testcase_20 AC 126 ms
6,784 KB
testcase_21 AC 181 ms
7,040 KB
testcase_22 AC 177 ms
7,168 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 3 ms
5,248 KB
testcase_29 AC 3 ms
5,248 KB
testcase_30 AC 162 ms
8,832 KB
testcase_31 AC 48 ms
6,400 KB
testcase_32 AC 59 ms
6,784 KB
testcase_33 AC 66 ms
7,296 KB
testcase_34 AC 87 ms
7,168 KB
testcase_35 AC 110 ms
8,064 KB
testcase_36 AC 136 ms
8,448 KB
testcase_37 AC 90 ms
7,552 KB
testcase_38 AC 66 ms
7,040 KB
testcase_39 AC 58 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

set<ll>g,h;
h.insert(0);
ll@n;
rep(n){
	ll@a;
	for(ll k:h){
		rep(16){
			g.insert(a|k);
			a=a*2%65535;
		}
	}
	swap(g,h);
	g.clear();
	if(h.find(65535)!=h.end()){
		wt(65535);
		exit(0);
	}
}
rrep(i,65536){
	if(h.find(i)!=h.end()){
		wt(i);
		exit(0);
	}
}
0