結果

問題 No.2270 T0空間
ユーザー MasKoaTSMasKoaTS
提出日時 2023-02-22 21:38:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 447 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 95,616 KB
最終ジャッジ日時 2024-07-22 22:17:22
合計ジャッジ時間 16,013 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 41 ms
52,480 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 41 ms
52,352 KB
testcase_10 AC 41 ms
51,840 KB
testcase_11 AC 132 ms
79,964 KB
testcase_12 AC 90 ms
77,812 KB
testcase_13 AC 240 ms
86,576 KB
testcase_14 AC 497 ms
86,700 KB
testcase_15 AC 441 ms
87,216 KB
testcase_16 AC 689 ms
92,564 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

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)

	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 and (a >> j) & 1 and ((b >> j) & 1) == 0):
				print("No")
				exit(0)
	print("Yes")

solve()
0