結果

問題 No.2911 位相の公理
ユーザー H3PO4H3PO4
提出日時 2024-10-04 21:39:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 596 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 82,308 KB
最終ジャッジ日時 2024-10-04 21:39:28
合計ジャッジ時間 4,316 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
59,648 KB
testcase_01 AC 34 ms
52,288 KB
testcase_02 AC 35 ms
53,624 KB
testcase_03 AC 36 ms
53,084 KB
testcase_04 AC 35 ms
51,696 KB
testcase_05 AC 32 ms
52,536 KB
testcase_06 AC 32 ms
53,504 KB
testcase_07 AC 33 ms
52,588 KB
testcase_08 AC 33 ms
52,236 KB
testcase_09 AC 33 ms
52,180 KB
testcase_10 AC 32 ms
52,964 KB
testcase_11 AC 34 ms
52,896 KB
testcase_12 AC 42 ms
59,868 KB
testcase_13 AC 33 ms
52,504 KB
testcase_14 AC 32 ms
53,208 KB
testcase_15 AC 34 ms
53,656 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(N: int, M: int, S: list[int]) -> bool:
    S_st = set(S)
    # 条件1
    if (1 << N) - 1 not in S_st:
        return False
    # 条件2
    for i in range(M):
        for j in range(i + 1, M):
            if S[i] & S[j] not in S_st:
                return False
    # 条件3
    for b in range(1 << M):
        x = 0
        for i in range(M):
            if b & (1 << i):
                x |= S[i]
        if x not in S_st:
            return False
    return True


N, M = map(int, input().split())
S = [int(input(), 2) for _ in range(M)]
print("Yes" if solve(N, M, S) else "No")
0