結果

問題 No.2270 T0空間
ユーザー tassei903tassei903
提出日時 2023-04-14 22:05:48
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 720 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 103,040 KB
最終ジャッジ日時 2024-10-10 12:52:14
合計ジャッジ時間 4,172 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 37 ms
52,608 KB
testcase_04 AC 37 ms
52,480 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 36 ms
52,608 KB
testcase_08 AC 37 ms
52,480 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 37 ms
52,096 KB
testcase_11 AC 61 ms
77,824 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 76 ms
81,152 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 130 ms
93,284 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n = ni()
m = ni()
s = [input() for j in range(m)]

def saiki(f, d):
    if len(f) <= 1:
        return True
    if d == m:
        return False
    a = []
    b = []
    for i in f:
        if s[d][i] == "0":
            a.append(i)
        else:
            b.append(i)
    return saiki(a, d+1) & saiki(b, d+1)

if saiki(list(range(n)), 0):
    Yes()
else:
    No()
0