結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー ygd.ygd.
提出日時 2021-07-30 23:46:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,438 ms / 3,000 ms
コード長 1,110 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 206,976 KB
最終ジャッジ日時 2024-09-16 04:00:15
合計ジャッジ時間 36,654 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,136 KB
testcase_01 AC 41 ms
59,008 KB
testcase_02 AC 43 ms
59,136 KB
testcase_03 AC 60 ms
65,536 KB
testcase_04 AC 42 ms
59,264 KB
testcase_05 AC 42 ms
59,136 KB
testcase_06 AC 42 ms
59,264 KB
testcase_07 AC 42 ms
59,136 KB
testcase_08 AC 44 ms
60,032 KB
testcase_09 AC 58 ms
62,208 KB
testcase_10 AC 47 ms
61,952 KB
testcase_11 AC 49 ms
62,080 KB
testcase_12 AC 45 ms
60,800 KB
testcase_13 AC 48 ms
63,104 KB
testcase_14 AC 2,316 ms
201,216 KB
testcase_15 AC 2,426 ms
206,464 KB
testcase_16 AC 2,414 ms
206,976 KB
testcase_17 AC 2,438 ms
206,720 KB
testcase_18 AC 2,398 ms
206,592 KB
testcase_19 AC 2,416 ms
206,592 KB
testcase_20 AC 2,420 ms
206,592 KB
testcase_21 AC 2,135 ms
191,008 KB
testcase_22 AC 2,379 ms
204,288 KB
testcase_23 AC 2,384 ms
204,288 KB
testcase_24 AC 2,395 ms
204,544 KB
testcase_25 AC 2,352 ms
203,008 KB
testcase_26 AC 57 ms
68,480 KB
testcase_27 AC 1,789 ms
170,752 KB
testcase_28 AC 801 ms
117,504 KB
testcase_29 AC 814 ms
117,760 KB
testcase_30 AC 1,148 ms
136,652 KB
testcase_31 AC 1,767 ms
170,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N,K = map(int,input().split())
    #global K
    C = list(map(int,input().split()))
    A = []
    for i in range(9):
        for j in range(C[i]):
            A.append(i+1)
    #print(A)
    MAX = 200000
    popcount = [0]*MAX
    for i in range(1,MAX):
        popcount[i] = popcount[i//2] + i%2
    
    #print(popcount)
    #dp[mask][j]:maskを使った時の余りがj
    dp = [[0]*(K) for _ in range(1<<N)]
    dp[0][0] = 1 #何もない場合の数は1
    for mask in range(1<<N):
        pcnt = popcount[mask] #この個数入っている
        #print("mask",mask,"pct",pcnt)
        base = pow(10,pcnt)
        for i in range(N):
            if (mask>>i)&1 == 1: continue #既に含まれている
            val = A[i]*base%K
            for j in range(K):
                #print(mask|1<<i,mask,val,base)
                dp[mask|1<<i][(j+val)%K] += dp[mask][j]
    #print(dp)
    ans = dp[-1][0]
    fact = [1] #fact[n]: n!
    for i in range(1,N+1):
        fact.append(fact[-1]*i)
    for c in C:
        ans //= fact[c]

    print(ans)



if __name__ == '__main__':
    main()
0