結果
問題 | No.2255 Determinant Sum |
ユーザー | sotanishy |
提出日時 | 2023-03-24 22:17:22 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,452 bytes |
コンパイル時間 | 149 ms |
コンパイル使用メモリ | 82,696 KB |
実行使用メモリ | 76,624 KB |
最終ジャッジ日時 | 2024-09-18 17:14:17 |
合計ジャッジ時間 | 2,350 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
52,136 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | AC | 68 ms
75,672 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 64 ms
75,268 KB |
testcase_11 | AC | 50 ms
72,472 KB |
testcase_12 | RE | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | AC | 59 ms
75,776 KB |
testcase_19 | AC | 57 ms
76,196 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | WA | - |
ソースコード
import sys input = sys.stdin.readline def det2(A): if not A: return 1 n = len(A) pivot = 0 for j in range(n): i = pivot while i < n and A[i][j] == 0: i += 1 if i == n: return 0 if i != pivot: A[i], A[pivot] = A[pivot], A[i] for k in range(n): if k == pivot: continue v = A[k][j] for l in range(j, m): A[k][l] ^= A[pivot][l] * v pivot += 1 T = int(input()) for _ in range(T): N, P = map(int, input().split()) A = [list(map(int, input().split())) for _ in range(N)] if P >= 3: print(0) else: row = [0] * N col = [0] * N ok = True for i in range(N): for j in range(N): if A[i][j] == -1: if row[i] or col[j]: ok = False break row[i] = 1 col[j] = 1 if not ok: break if not ok: print(0) else: M = N - sum(row) rs = [i for i in range(N) if not row[i]] cs = [j for j in range(N) if not col[j]] rem = [[0] * M for _ in range(M)] for ni, i in enumerate(rs): for nj, j in enumerate(cs): rem[ni][nj] = A[i][j] print(det2(rem))