結果

問題 No.2270 T0空間
ユーザー MasKoaTSMasKoaTS
提出日時 2023-02-24 19:02:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 338 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 57,096 KB
最終ジャッジ日時 2024-09-13 03:25:07
合計ジャッジ時間 18,268 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 519 ms
50,944 KB
testcase_01 AC 513 ms
44,000 KB
testcase_02 AC 518 ms
43,624 KB
testcase_03 AC 515 ms
43,748 KB
testcase_04 AC 526 ms
43,744 KB
testcase_05 AC 518 ms
44,004 KB
testcase_06 AC 515 ms
43,884 KB
testcase_07 AC 522 ms
44,012 KB
testcase_08 AC 525 ms
44,004 KB
testcase_09 AC 520 ms
44,132 KB
testcase_10 AC 529 ms
43,872 KB
testcase_11 TLE -
testcase_12 AC 1,450 ms
44,900 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

n = int(input())
m = int(input())
lis = [np.array([bool(int(c)) for c in input()]) for _ in [0] * m]

for i in range(n):
	a = np.array([True] * n)
	b = np.array([False] * n)
	for bits in lis:
		if(bits[i]):
			a &= bits
		else:
			b |= bits
	c = a & ~b
	c[i] &= False
	if c.any():
		print("No")
		exit(0)
print("Yes")
0