結果
問題 | No.2270 T0空間 |
ユーザー | MasKoaTS |
提出日時 | 2023-02-22 20:43:07 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 388 bytes |
コンパイル時間 | 583 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 221,328 KB |
最終ジャッジ日時 | 2024-07-22 21:33:45 |
合計ジャッジ時間 | 14,121 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
57,472 KB |
testcase_01 | AC | 39 ms
52,096 KB |
testcase_02 | AC | 40 ms
52,096 KB |
testcase_03 | AC | 38 ms
51,712 KB |
testcase_04 | AC | 39 ms
51,840 KB |
testcase_05 | AC | 39 ms
51,712 KB |
testcase_06 | AC | 40 ms
51,968 KB |
testcase_07 | AC | 39 ms
51,968 KB |
testcase_08 | AC | 40 ms
52,096 KB |
testcase_09 | AC | 43 ms
51,712 KB |
testcase_10 | AC | 43 ms
51,968 KB |
testcase_11 | AC | 627 ms
93,056 KB |
testcase_12 | AC | 378 ms
85,632 KB |
testcase_13 | AC | 712 ms
115,968 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 1,915 ms
115,968 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
n = int(input()) m = int(input()) lis = [[bool(int(c)) for c in input()] for _ in [0] * m] for i in range(n): a = [True] * n b = [False] * n for bits in lis: if(bits[i]): for j, f in enumerate(bits): a[j] &= f else: for j, f in enumerate(bits): b[j] |= f for j in range(n): if(i == j): continue if(a[j] and not(b[j])): print("No") exit(0) print("Yes")