結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー とりゐとりゐ
提出日時 2021-07-08 15:40:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,227 ms / 3,000 ms
コード長 536 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 205,288 KB
最終ジャッジ日時 2024-09-15 21:57:14
合計ジャッジ時間 33,805 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,476 KB
testcase_01 AC 38 ms
53,104 KB
testcase_02 AC 38 ms
52,544 KB
testcase_03 AC 62 ms
68,372 KB
testcase_04 AC 38 ms
53,024 KB
testcase_05 AC 39 ms
53,632 KB
testcase_06 AC 38 ms
53,072 KB
testcase_07 AC 39 ms
52,676 KB
testcase_08 AC 42 ms
59,184 KB
testcase_09 AC 52 ms
61,784 KB
testcase_10 AC 46 ms
60,920 KB
testcase_11 AC 49 ms
61,452 KB
testcase_12 AC 44 ms
60,088 KB
testcase_13 AC 48 ms
63,100 KB
testcase_14 AC 2,070 ms
199,536 KB
testcase_15 AC 2,170 ms
205,124 KB
testcase_16 AC 2,177 ms
205,128 KB
testcase_17 AC 2,227 ms
205,144 KB
testcase_18 AC 2,179 ms
205,288 KB
testcase_19 AC 2,173 ms
205,272 KB
testcase_20 AC 2,158 ms
205,200 KB
testcase_21 AC 1,913 ms
189,532 KB
testcase_22 AC 2,111 ms
203,212 KB
testcase_23 AC 2,134 ms
202,976 KB
testcase_24 AC 2,128 ms
202,972 KB
testcase_25 AC 2,109 ms
201,828 KB
testcase_26 AC 63 ms
73,608 KB
testcase_27 AC 1,596 ms
169,096 KB
testcase_28 AC 739 ms
115,704 KB
testcase_29 AC 741 ms
116,528 KB
testcase_30 AC 1,036 ms
134,924 KB
testcase_31 AC 1,585 ms
168,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,p=map(int,input().split())
c=list(map(int,input().split()))
a=[]
for i in range(9):
  for j in range(c[i]):
    a.append(i+1)
dp=[[0]*p for i in range(1<<n)]
dp[0][0]=1
q=[1]*n
for i in range(1,n):
  q[i]=(q[i-1]*10)%p
s=set([0])
for i in range(1<<n):
  j=bin(i).count("1")
  for k in range(n):
    if (i>>k)&1==0:
      for l in range(p):
        dp[i+2**k][(l+q[k]*a[j])%p]+=dp[i][l]
ans=dp[2**n-1][0]
fact=[1]*(n+1)
for i in range(1,n+1):
  fact[i]=fact[i-1]*i
c=[0]*9
for i in a:
  c[i-1]+=1
for i in c:
  ans//=fact[i]
print(ans)
0