結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー arahi10arahi10
提出日時 2021-07-30 21:53:03
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,400 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 87,156 KB
実行使用メモリ 563,660 KB
最終ジャッジ日時 2023-10-14 04:26:59
合計ジャッジ時間 9,587 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 95 ms
71,692 KB
testcase_02 AC 93 ms
71,496 KB
testcase_03 AC 124 ms
77,512 KB
testcase_04 AC 95 ms
71,328 KB
testcase_05 AC 96 ms
71,436 KB
testcase_06 AC 93 ms
71,696 KB
testcase_07 AC 95 ms
71,668 KB
testcase_08 AC 93 ms
71,376 KB
testcase_09 AC 108 ms
77,600 KB
testcase_10 AC 104 ms
77,180 KB
testcase_11 AC 111 ms
77,620 KB
testcase_12 AC 105 ms
77,188 KB
testcase_13 AC 107 ms
77,444 KB
testcase_14 AC 2,460 ms
311,804 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python3.8
N,K=map(int,input().split())
C=list(map(int,input().split()))
nums=[]
from collections import defaultdict


for i in range(1,10):
    nums+=[i]*C[i-1]
dp=[defaultdict(int) for i in range(2**N)]
dp[0][0]+=1

#########bit library #########
def popcount(a):
    return bin(a).count('1')
#Sの部分集合の列挙、降順
def subset(S):
    T=S
    while T:
        T=S&(T-1)
        yield T
#N桁の二進数のうち丁度Kbitだけ立っている数の列挙
#昇順
def Kbits(N,K):
    if N<K:raise ValueError
    if K==0:return [0]
    v=(1<<K)-1;MAX=1<<N
    while v<MAX:
        yield v
        x = v & (-v) 
        y = v + x 
        v = (v & ~y) // x >> 1 | y
#S&v = v を満たすvの列挙、昇順
def flags(S):
    while S:
        v=S&(-S)
        S^=v
        yield v
def flag_inds(S):
    while S:
        v=S&(-S)
        S^=v
        yield v.bit_length()-1
#1つだけビットが立っていないものの列挙、降順
def childs(S):
    tmp=S
    while tmp:
        v=tmp&(-tmp)
        tmp^=v
        yield S^v,v.bit_length()-1
def post(S):
    assert S>0
    v=S&(-S)
    return S^v,v.bit_length()-1
#########bit library end#########
for S in range(1,2**N):
    for P,j in childs(S):
        num=nums[j]
        for k,v in dp[P].items():
            dp[S][(10*k+num)%K]+=v
f=1
from math import factorial
for v in C:
    f*=factorial(v)
print(dp[-1][0]//f)
0