結果

問題 No.2270 T0空間
ユーザー shobonvipshobonvip
提出日時 2023-04-14 21:54:09
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 323 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,732 KB
実行使用メモリ 91,232 KB
最終ジャッジ日時 2024-10-10 12:40:02
合計ジャッジ時間 7,372 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
62,400 KB
testcase_01 AC 40 ms
54,392 KB
testcase_02 AC 40 ms
54,176 KB
testcase_03 AC 39 ms
54,104 KB
testcase_04 AC 40 ms
54,876 KB
testcase_05 AC 41 ms
55,468 KB
testcase_06 AC 40 ms
54,464 KB
testcase_07 AC 41 ms
55,012 KB
testcase_08 AC 41 ms
55,384 KB
testcase_09 AC 40 ms
55,636 KB
testcase_10 AC 41 ms
54,412 KB
testcase_11 AC 108 ms
77,452 KB
testcase_12 AC 89 ms
77,652 KB
testcase_13 AC 181 ms
80,744 KB
testcase_14 AC 184 ms
82,148 KB
testcase_15 AC 184 ms
80,428 KB
testcase_16 AC 270 ms
82,904 KB
testcase_17 AC 368 ms
84,112 KB
testcase_18 AC 388 ms
84,048 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
n = int(input())
m = int(input())

# n <= 512
# m <= 65536

r = [int(input(),2) for i in range(m)]
random.shuffle(r)

for i in range(n):
	for j in range(i+1, n):
		mode = 0
		for k in range(m):
			if r[k] >> i & 1 != r[k] >> j & 1:
				mode = 1
				break
		if mode == 0:
			print("No")
			exit()

print("Yes")
0