結果

問題 No.2911 位相の公理
ユーザー titiatitia
提出日時 2024-10-04 22:23:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 81,896 KB
実行使用メモリ 65,144 KB
最終ジャッジ日時 2024-10-04 22:23:04
合計ジャッジ時間 2,635 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,612 KB
testcase_01 AC 35 ms
53,564 KB
testcase_02 AC 35 ms
53,088 KB
testcase_03 AC 32 ms
53,448 KB
testcase_04 AC 33 ms
52,576 KB
testcase_05 AC 31 ms
52,676 KB
testcase_06 AC 31 ms
52,724 KB
testcase_07 AC 31 ms
52,676 KB
testcase_08 AC 31 ms
52,820 KB
testcase_09 AC 31 ms
52,684 KB
testcase_10 AC 30 ms
53,000 KB
testcase_11 AC 30 ms
52,080 KB
testcase_12 AC 32 ms
52,712 KB
testcase_13 AC 31 ms
52,812 KB
testcase_14 AC 32 ms
52,460 KB
testcase_15 AC 32 ms
52,408 KB
testcase_16 AC 31 ms
53,548 KB
testcase_17 AC 32 ms
52,832 KB
testcase_18 AC 36 ms
59,424 KB
testcase_19 AC 174 ms
64,168 KB
testcase_20 AC 368 ms
64,004 KB
testcase_21 AC 360 ms
64,856 KB
testcase_22 AC 43 ms
63,632 KB
testcase_23 AC 267 ms
65,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
S=[int(input().strip(),2) for i in range(M)]

SET=set(S)
if 0 in S and ((1<<N)-1) in S:
    pass
else:
    print("No")
    exit()

for i in range(M):
    for j in range(i+1,M):
        X=S[i]
        Y=S[j]

        Z=X&Y
        W=X|Y

        if Z in SET and W in SET:
            pass
        else:
            print("No")
            exit()

print("Yes")
0