結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー とりゐとりゐ
提出日時 2021-07-08 15:37:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,941 ms / 3,000 ms
コード長 680 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 205,696 KB
最終ジャッジ日時 2024-09-15 21:54:19
合計ジャッジ時間 22,173 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 60 ms
66,176 KB
testcase_04 AC 38 ms
52,268 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 45 ms
59,392 KB
testcase_09 AC 49 ms
61,824 KB
testcase_10 AC 45 ms
60,416 KB
testcase_11 AC 47 ms
61,696 KB
testcase_12 AC 44 ms
59,648 KB
testcase_13 AC 46 ms
60,928 KB
testcase_14 AC 1,844 ms
199,296 KB
testcase_15 AC 1,922 ms
205,220 KB
testcase_16 AC 1,937 ms
205,568 KB
testcase_17 AC 1,941 ms
205,696 KB
testcase_18 AC 1,935 ms
205,232 KB
testcase_19 AC 1,929 ms
205,312 KB
testcase_20 AC 230 ms
205,312 KB
testcase_21 AC 217 ms
183,808 KB
testcase_22 AC 420 ms
203,116 KB
testcase_23 AC 1,568 ms
202,708 KB
testcase_24 AC 888 ms
202,700 KB
testcase_25 AC 380 ms
201,856 KB
testcase_26 AC 91 ms
77,720 KB
testcase_27 AC 1,413 ms
169,600 KB
testcase_28 AC 668 ms
116,224 KB
testcase_29 AC 720 ms
116,608 KB
testcase_30 AC 952 ms
134,944 KB
testcase_31 AC 1,405 ms
168,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
n,p=map(int,input().split())
c1=list(map(int,input().split()))
c2=[]
for i in range(9):
  c2.append([c1[i],i])
c2.sort(reverse=True)
q=[1]*n
for i in range(1,n):
  q[i]=(q[i-1]*10)%p
d=set([0])
memo=[[0]*p for i in range(2**n)]
memo[0][0]=1
for a in range(9):
  i=c2[a][1]
  if c1[i]==0:
    continue
  e=set()
  for j in d:
    t=[]
    for k in range(n):
      if (j>>k)&1==0:
        t.append(k)
    all=itertools.combinations(t,c1[i])
    for x in all:
      y=j
      cnt=0
      for k in x:
        cnt+=q[k]
        y+=2**k
      for k in range(p):
        s=(cnt*(i+1)+k)%p
        memo[y][s]+=memo[j][k]
      e.add(y)
  d=e.copy()
print(memo[2**n-1][0])
0