結果

問題 No.2270 T0空間
ユーザー MasKoaTSMasKoaTS
提出日時 2023-02-22 19:05:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,087 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 131,968 KB
最終ジャッジ日時 2024-07-22 20:06:26
合計ジャッジ時間 10,018 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
91,776 KB
testcase_01 AC 155 ms
86,400 KB
testcase_02 AC 147 ms
86,272 KB
testcase_03 AC 146 ms
86,272 KB
testcase_04 AC 149 ms
86,400 KB
testcase_05 AC 147 ms
86,656 KB
testcase_06 AC 146 ms
86,400 KB
testcase_07 AC 143 ms
86,272 KB
testcase_08 AC 143 ms
86,400 KB
testcase_09 AC 144 ms
86,272 KB
testcase_10 AC 142 ms
86,272 KB
testcase_11 AC 283 ms
98,688 KB
testcase_12 AC 210 ms
91,648 KB
testcase_13 AC 469 ms
109,184 KB
testcase_14 AC 740 ms
108,916 KB
testcase_15 AC 417 ms
108,848 KB
testcase_16 AC 830 ms
116,224 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools as iter
import collections as coll
import heapq as hq
import bisect as bis
from decimal import Decimal as dec
from functools import cmp_to_key
import math
import sys
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
sys.setrecursionlimit(10 ** 6)
inp = sys.stdin.readline
input = lambda : inp().rstrip()
getN = lambda : int(inp())
getNs = lambda : map(int, inp().split())
getList = lambda :list(map(int, inp().split()))
getStrs = lambda n : [input() for _ in [0] * n]
def yexit(): print("Yes"); exit(0)
def nexit(): print("No"); exit(0)
pi = 3.141592653589793
mod = 1000000007
MOD = 998244353
INF = 4611686018427387903
dx = [1, 0, -1, 0];	dy = [0, 1, 0, -1]
#di = coll.defaultdict(int)


"""
Main Code
"""

n = getN()
m = getN()
s = getStrs(m)
st = set([])

for ss in s:
	t = 0
	for i, c in enumerate(ss[::-1]):
		t |= int(c) << i
	st.add(t)

for i in range(n):
	a = (1 << n) - 1
	b = 0
	for k in st:
		if((k >> i) & 1):
			a &= k
		else:
			b |= k
	for j in range(n):
		if(i == j):
			continue
		if((a >> j) & 1 and ((b >> j) & 1) == 0):
			nexit()
yexit()
0