結果

問題 No.2911 位相の公理
ユーザー hiro1729hiro1729
提出日時 2023-12-16 19:30:35
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 360 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,916 KB
実行使用メモリ 82,848 KB
最終ジャッジ日時 2024-09-27 07:48:03
合計ジャッジ時間 4,767 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,088 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 36 ms
51,584 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 35 ms
52,096 KB
testcase_11 AC 37 ms
52,352 KB
testcase_12 AC 43 ms
59,904 KB
testcase_13 AC 37 ms
52,352 KB
testcase_14 AC 37 ms
51,712 KB
testcase_15 AC 46 ms
60,416 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
s = [int(input(), 2) for _ in range(M)]
st = set(s)
ok = True
if 0 not in s or (1<<N)-1 not in s:
	ok = False
for s0 in s:
	for s1 in s:
		if s0 & s1 not in st:
			ok = False
for i in range(1 << M):
	now = (1<<N) - 1
	for j in range(M):
		if i&(1<<j):
			now |= s[j]
	if now not in st:
		ok = False
print("Yes" if ok else "No")
0