結果
問題 | No.2270 T0空間 |
ユーザー | MasKoaTS |
提出日時 | 2023-02-22 20:36:33 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 383 bytes |
コンパイル時間 | 257 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 55,468 KB |
最終ジャッジ日時 | 2024-07-22 21:28:03 |
合計ジャッジ時間 | 17,155 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 518 ms
49,328 KB |
testcase_01 | AC | 524 ms
44,324 KB |
testcase_02 | AC | 529 ms
44,068 KB |
testcase_03 | AC | 514 ms
44,208 KB |
testcase_04 | AC | 513 ms
44,196 KB |
testcase_05 | AC | 518 ms
43,948 KB |
testcase_06 | AC | 526 ms
43,940 KB |
testcase_07 | AC | 523 ms
43,820 KB |
testcase_08 | AC | 525 ms
43,820 KB |
testcase_09 | AC | 524 ms
43,816 KB |
testcase_10 | AC | 517 ms
43,944 KB |
testcase_11 | TLE | - |
testcase_12 | AC | 1,454 ms
44,712 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
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 for j in range(n): if(i == j): continue if(a[j] and np.logical_not(b[j])): print("No") exit(0) print("Yes")