結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 44 ms
51,840 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 126 ms
80,256 KB
testcase_12 AC 84 ms
77,440 KB
testcase_13 AC 224 ms
86,324 KB
testcase_14 AC 478 ms
86,448 KB
testcase_15 AC 414 ms
86,452 KB
testcase_16 AC 665 ms
92,500 KB
testcase_17 TLE -
testcase_18 AC 1,964 ms
95,244 KB
testcase_19 AC 1,969 ms
92,512 KB
testcase_20 TLE -
testcase_21 AC 1,965 ms
92,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def solve():
	n = int(input())
	m = int(input())
	st = set([])
	for _ in [0] * m:
		k = 0
		for i, c in enumerate(input().rstrip()):
			k |= int(c) << i
		st.add(k)

	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