結果
問題 | No.2445 奇行列式 |
ユーザー | tassei903 |
提出日時 | 2023-08-25 22:10:27 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,156 bytes |
コンパイル時間 | 426 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 208,688 KB |
最終ジャッジ日時 | 2024-06-06 16:39:56 |
合計ジャッジ時間 | 9,738 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
57,600 KB |
testcase_01 | AC | 37 ms
52,096 KB |
testcase_02 | AC | 36 ms
52,480 KB |
testcase_03 | AC | 36 ms
52,224 KB |
testcase_04 | AC | 38 ms
52,352 KB |
testcase_05 | AC | 42 ms
58,496 KB |
testcase_06 | AC | 50 ms
61,952 KB |
testcase_07 | AC | 61 ms
65,024 KB |
testcase_08 | AC | 71 ms
69,248 KB |
testcase_09 | AC | 38 ms
51,968 KB |
testcase_10 | AC | 37 ms
51,840 KB |
testcase_11 | AC | 206 ms
78,976 KB |
testcase_12 | AC | 689 ms
92,860 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
import sys input = lambda :sys.stdin.readline()[:-1] ni = lambda :int(input()) na = lambda :list(map(int,input().split())) yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES") no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO") ####################################################################### n, mod = na() a = [na() for i in range(n)] dp0 = [0] * (1<<n) dp1 = [0] * (1<<n) dp0[0] = 1 for i in range(1<<n): for j in range(n): if i >> j & 1: continue c = 0 for k in range(j+1, n): if i >> k & 1: c += 1 pc = 0 for k in range(n): if i >> k & 1: pc += 1 #print(bin(i), j, c, pc) if c % 2: dp0[i | (1<<j)] += dp1[i] * a[pc][j] dp0[i | (1<<j)] %= mod dp1[i | (1<<j)] += dp0[i] * a[pc][j] dp1[i | (1<<j)] %= mod else: dp0[i | (1<<j)] += dp0[i] * a[pc][j] dp0[i | (1<<j)] %= mod dp1[i | (1<<j)] += dp1[i] * a[pc][j] dp1[i | (1<<j)] %= mod #print(dp0, dp1) print(dp1[-1])