結果

問題 No.2911 位相の公理
ユーザー titiatitia
提出日時 2024-10-04 22:21:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 412 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 70,700 KB
最終ジャッジ日時 2024-10-04 22:21:44
合計ジャッジ時間 4,668 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,668 KB
testcase_01 AC 34 ms
53,332 KB
testcase_02 AC 34 ms
52,024 KB
testcase_03 AC 33 ms
52,516 KB
testcase_04 AC 32 ms
52,880 KB
testcase_05 AC 32 ms
52,456 KB
testcase_06 AC 33 ms
52,520 KB
testcase_07 AC 32 ms
53,048 KB
testcase_08 AC 32 ms
52,184 KB
testcase_09 AC 33 ms
53,040 KB
testcase_10 AC 34 ms
52,308 KB
testcase_11 AC 33 ms
53,184 KB
testcase_12 AC 33 ms
53,356 KB
testcase_13 AC 34 ms
52,520 KB
testcase_14 AC 35 ms
51,904 KB
testcase_15 AC 34 ms
53,152 KB
testcase_16 AC 38 ms
52,848 KB
testcase_17 AC 35 ms
53,692 KB
testcase_18 AC 40 ms
60,144 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

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 S and W in S:
            pass
        else:
            print("No")
            exit()

print("Yes")
0