結果

問題 No.2445 奇行列式
ユーザー ゼットゼット
提出日時 2023-08-25 22:44:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 762 bytes
コンパイル時間 690 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 629,836 KB
最終ジャッジ日時 2024-06-06 17:26:47
合計ジャッジ時間 9,508 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,216 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 82 ms
71,552 KB
testcase_09 AC 42 ms
52,096 KB
testcase_10 AC 42 ms
51,968 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 MLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,mod=map(int,input().split())
A=[list(map(int,input().split())) for i in range(N)]
dp=[[0]*(2**(N+1)) for i in range(N)]
for j in range(N):
  bit=2**j
  if j==0:
    dp[0][2*bit]=A[0][j]
  else:
    dp[0][2*bit+1]=A[0][j]
for i in range(N-1):
  for bit in range(2**N):
    for k in range(2):
      if dp[i][2*bit+k]==0:
        continue
      for j in range(N):
        if (bit>>j)&1:
          continue
        if j==i+1 or ((bit>>(i+1))&1 and j<i+1):
          k2=k
          dp[i+1][2*(bit+2**j)+k2]+=dp[i][2*bit+k]*A[i+1][j]  
          dp[i+1][2*(bit+2**j)+k2]%=mod
        else:
          k2=(k+1)%2  
          dp[i+1][2*(bit+2**j)+k2]+=dp[i][2*bit+k]*A[i+1][j]
          dp[i+1][2*(bit+2**j)+k2]%=mod
result=dp[N-1][2**(N+1)-1]
result%=mod
print(result)
0