結果

問題 No.2911 位相の公理
ユーザー miya145592miya145592
提出日時 2024-10-04 23:22:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 65,348 KB
最終ジャッジ日時 2024-10-04 23:22:32
合計ジャッジ時間 1,683 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,776 KB
testcase_01 AC 31 ms
53,040 KB
testcase_02 AC 31 ms
53,072 KB
testcase_03 AC 31 ms
53,588 KB
testcase_04 AC 30 ms
52,856 KB
testcase_05 AC 31 ms
51,872 KB
testcase_06 AC 31 ms
52,000 KB
testcase_07 AC 31 ms
53,016 KB
testcase_08 AC 31 ms
53,424 KB
testcase_09 AC 31 ms
52,632 KB
testcase_10 AC 31 ms
52,480 KB
testcase_11 AC 34 ms
52,440 KB
testcase_12 AC 31 ms
51,944 KB
testcase_13 AC 31 ms
52,944 KB
testcase_14 AC 32 ms
52,588 KB
testcase_15 AC 35 ms
53,088 KB
testcase_16 AC 32 ms
52,768 KB
testcase_17 AC 31 ms
51,752 KB
testcase_18 AC 36 ms
60,560 KB
testcase_19 AC 41 ms
64,172 KB
testcase_20 AC 45 ms
65,348 KB
testcase_21 AC 45 ms
65,172 KB
testcase_22 AC 36 ms
61,200 KB
testcase_23 AC 44 ms
65,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, M = map(int, input().split())
S = [input().strip() for _ in range(M)]
T = set(S)
if "1"*N not in T:
    print("No")
    exit()
for i in range(N):
    for j in range(i+1, N):
        si = S[i]
        sj = S[j]
        tmp = ""
        for k in range(N):
            if si[k]=="1" and sj[k]=="1":
                tmp+="1"
            else:
                tmp+="0"
        if tmp not in T:
            print("No")
            exit()
dp = [0 for _ in range(N)]
for s in S:
    for i in range(N):
        if s[i]=="1":
            dp[i] = 1
if "0"*N not in T:
    print("No")
    exit()
dp.reverse()
tmp = "".join(map(str, dp))
if tmp not in T:
    print("No")
    exit()
print("Yes")
0