結果

問題 No.2270 T0空間
ユーザー MasKoaTSMasKoaTS
提出日時 2023-02-23 13:43:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,854 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 83,580 KB
最終ジャッジ日時 2024-07-23 10:01:24
合計ジャッジ時間 9,746 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,376 KB
testcase_01 AC 36 ms
52,568 KB
testcase_02 AC 37 ms
53,136 KB
testcase_03 AC 36 ms
52,856 KB
testcase_04 AC 36 ms
52,996 KB
testcase_05 AC 36 ms
52,752 KB
testcase_06 AC 36 ms
52,680 KB
testcase_07 AC 35 ms
52,528 KB
testcase_08 AC 35 ms
52,328 KB
testcase_09 AC 36 ms
52,684 KB
testcase_10 AC 36 ms
52,572 KB
testcase_11 AC 88 ms
76,440 KB
testcase_12 AC 64 ms
75,996 KB
testcase_13 AC 163 ms
80,068 KB
testcase_14 AC 424 ms
81,216 KB
testcase_15 AC 142 ms
79,524 KB
testcase_16 AC 235 ms
82,348 KB
testcase_17 AC 1,807 ms
83,212 KB
testcase_18 AC 592 ms
83,244 KB
testcase_19 AC 1,854 ms
83,580 KB
testcase_20 AC 1,824 ms
83,236 KB
testcase_21 AC 312 ms
83,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

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

solve()
0