結果

問題 No.2270 T0空間
ユーザー MasKoaTSMasKoaTS
提出日時 2023-02-22 22:41:03
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 363 bytes
コンパイル時間 555 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 94,036 KB
最終ジャッジ日時 2024-07-23 00:07:28
合計ジャッジ時間 10,948 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 37 ms
51,712 KB
testcase_08 AC 37 ms
51,968 KB
testcase_09 AC 36 ms
51,584 KB
testcase_10 AC 37 ms
51,712 KB
testcase_11 AC 108 ms
83,504 KB
testcase_12 AC 71 ms
78,080 KB
testcase_13 AC 191 ms
89,856 KB
testcase_14 AC 480 ms
91,520 KB
testcase_15 AC 168 ms
89,728 KB
testcase_16 AC 259 ms
92,544 KB
testcase_17 AC 1,981 ms
93,232 KB
testcase_18 AC 642 ms
93,184 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 346 ms
93,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def solve():
	n = int(input())
	m = int(input())
	st = set([int(input().rstrip(), 2) for _ in [0] * m])

	MAX_INT = (1 << n) - 1
	for i in range(n):
		a = MAX_INT
		b = 0
		for k in st:
			if((k >> i) & 1):
				a &= k
			else:
				b |= k
		if(a & ~b & (MAX_INT - (1 << i))):
			print("No")
			exit(0)
	print("Yes")

solve()
0