結果
問題 | No.2270 T0空間 |
ユーザー | MasKoaTS |
提出日時 | 2023-02-24 20:28:45 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 450 bytes |
コンパイル時間 | 413 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 71,708 KB |
最終ジャッジ日時 | 2024-09-13 04:20:09 |
合計ジャッジ時間 | 13,019 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 511 ms
51,044 KB |
testcase_01 | AC | 515 ms
44,104 KB |
testcase_02 | AC | 516 ms
44,240 KB |
testcase_03 | AC | 516 ms
43,976 KB |
testcase_04 | WA | - |
testcase_05 | AC | 517 ms
44,232 KB |
testcase_06 | AC | 522 ms
44,232 KB |
testcase_07 | AC | 517 ms
44,228 KB |
testcase_08 | AC | 517 ms
43,976 KB |
testcase_09 | AC | 520 ms
44,228 KB |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
import numpy as np import sys input = sys.stdin.readline n = int(input()) m = int(input()) mat = np.array([np.array(list(input().rstrip())).astype(bool) for _ in [0] * m]) for i in range(n): a = np.prod(np.array([v if(v[i]) else np.zeros(n) for v in mat]), axis = 0).astype(bool) b = np.sum(np.array([v if(~v[i]) else np.zeros(n) for v in mat]), axis = 0).astype(bool) c = a & ~b c[i] &= False if c.any(): print("No") exit(0) print("Yes")