結果

問題 No.2270 T0空間
ユーザー 👑 p-adicp-adic
提出日時 2023-02-22 22:52:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 309 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,304 KB
最終ジャッジ日時 2024-07-23 00:06:40
合計ジャッジ時間 10,272 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,384 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 605 ms
12,672 KB
testcase_12 AC 197 ms
11,520 KB
testcase_13 AC 325 ms
14,336 KB
testcase_14 AC 1,491 ms
14,336 KB
testcase_15 AC 253 ms
14,336 KB
testcase_16 AC 309 ms
14,336 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = int(input())
S = [int(input(),2) for m in range(M)]
ambient = (2**N)-1
power = 1
for n in range(N):
	cap = ambient
	cup = power
	for s in S:
		if( ( s >> n ) & 1 == 1 ):
			cap &= s
		else:
			cup |= s
	if( ( ( ~cup ) & cap ) != 0 ):
		print( "No" )
		exit(0)
	power <<= 1
print( "Yes" )
0