結果

問題 No.2911 位相の公理
ユーザー hiro1729hiro1729
提出日時 2024-09-01 19:54:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 778 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 76,936 KB
最終ジャッジ日時 2024-09-01 19:54:07
合計ジャッジ時間 5,799 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,068 KB
testcase_01 AC 37 ms
53,536 KB
testcase_02 AC 37 ms
53,132 KB
testcase_03 AC 39 ms
52,468 KB
testcase_04 AC 38 ms
51,908 KB
testcase_05 AC 39 ms
53,812 KB
testcase_06 AC 41 ms
52,500 KB
testcase_07 AC 47 ms
52,584 KB
testcase_08 AC 38 ms
52,492 KB
testcase_09 AC 40 ms
53,080 KB
testcase_10 AC 37 ms
52,024 KB
testcase_11 AC 36 ms
53,084 KB
testcase_12 AC 37 ms
52,704 KB
testcase_13 AC 37 ms
52,560 KB
testcase_14 AC 37 ms
53,380 KB
testcase_15 AC 37 ms
52,592 KB
testcase_16 AC 40 ms
52,868 KB
testcase_17 AC 41 ms
57,984 KB
testcase_18 AC 160 ms
76,544 KB
testcase_19 AC 359 ms
76,244 KB
testcase_20 AC 718 ms
76,300 KB
testcase_21 AC 778 ms
76,936 KB
testcase_22 AC 642 ms
76,428 KB
testcase_23 AC 579 ms
76,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
assert(1 <= N <= 16 and 1 <= M <= min(1 << N, 1 << 12))
s = []
for i in range(M):
	si = input()
	assert(all(i in "01" for i in si) and len(si) == N)
	s.append(int(si, 2))
st = set(s)
ok = True
if 0 not in st or (1 << N)-1 not in st:
	ok = False
for s0 in s:
	for s1 in s:
		if s0 & s1 not in st:
			ok = False
		if s0 | s1 not in st:
			ok = False
print("Yes" if ok else "No")
0