結果

問題 No.2911 位相の公理
ユーザー tailstails
提出日時 2024-10-04 21:42:11
言語 cLay
(20240714-1)
結果
RE  
実行時間 -
コード長 247 bytes
コンパイル時間 2,467 ms
コンパイル使用メモリ 171,620 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-04 21:42:15
合計ジャッジ時間 3,398 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 11 ms
5,248 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,@m,a[4096],b[m];
rep(i,m){
	ll x=0;
	rep(n){
		char@c;
		x=x<<1|c&1;
	}
	a[x]=1;
	b[i]=x;
}
if(!a[0]||!a[(1<<n)-1]){
	wt("No");
	exit(0);
}
rep(i,m){
	rep(j,i){
		if(!a[b[i]&b[j]]||!a[b[i]|b[j]]){
			wt("No");
			exit(0);
		}
	}
}
wt("Yes");
0