結果

問題 No.2911 位相の公理
ユーザー hiro1729hiro1729
提出日時 2023-12-16 19:32:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 758 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 72,656 KB
最終ジャッジ日時 2024-09-27 07:48:09
合計ジャッジ時間 4,859 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,988 KB
testcase_01 AC 38 ms
53,208 KB
testcase_02 AC 37 ms
52,492 KB
testcase_03 AC 37 ms
52,672 KB
testcase_04 AC 41 ms
52,860 KB
testcase_05 AC 37 ms
51,880 KB
testcase_06 AC 37 ms
53,304 KB
testcase_07 AC 37 ms
52,928 KB
testcase_08 AC 38 ms
51,756 KB
testcase_09 AC 37 ms
52,068 KB
testcase_10 AC 37 ms
52,952 KB
testcase_11 AC 37 ms
53,296 KB
testcase_12 AC 36 ms
52,812 KB
testcase_13 AC 37 ms
53,596 KB
testcase_14 AC 37 ms
53,564 KB
testcase_15 AC 37 ms
52,372 KB
testcase_16 AC 38 ms
52,644 KB
testcase_17 AC 40 ms
58,592 KB
testcase_18 AC 141 ms
70,100 KB
testcase_19 AC 340 ms
70,800 KB
testcase_20 AC 722 ms
71,044 KB
testcase_21 AC 758 ms
69,832 KB
testcase_22 AC 593 ms
72,656 KB
testcase_23 AC 558 ms
70,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
s = [int(input(), 2) for _ in range(M)]
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