結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー ygd.ygd.
提出日時 2021-07-30 22:12:01
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,772 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 94,208 KB
最終ジャッジ日時 2024-09-16 00:31:31
合計ジャッジ時間 6,184 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
68,864 KB
testcase_01 AC 59 ms
63,232 KB
testcase_02 AC 60 ms
63,744 KB
testcase_03 AC 234 ms
79,616 KB
testcase_04 AC 59 ms
63,232 KB
testcase_05 AC 61 ms
63,360 KB
testcase_06 AC 59 ms
63,488 KB
testcase_07 AC 67 ms
66,304 KB
testcase_08 AC 80 ms
75,008 KB
testcase_09 AC 154 ms
78,976 KB
testcase_10 AC 89 ms
78,336 KB
testcase_11 AC 105 ms
78,464 KB
testcase_12 AC 96 ms
78,720 KB
testcase_13 AC 77 ms
70,656 KB
testcase_14 TLE -
testcase_15 -- -
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 #

import copy
import sys
sys.setrecursionlimit(1000000)
from functools import lru_cache


def main():
    N,K = map(int,input().split())
    #global K
    C = list(map(int,input().split()))
    #A = []
    #for i in range(N):
    #    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

    @lru_cache(maxsize=None)
    def solve(X): #Xというタプルまで見た時次の遷移
        X = list(X)
        pcnt = 0
        for a in X:
            pcnt += a
        if pcnt == 0:
            ret = [0]*K
            ret[0] = 1
            return ret
        base = pow(10,pcnt-1)
        ret = [0]*K
        for i in range(9):
            if X[i] >= 1:
                val = base*(i+1)
                TX = copy.copy(X)
                TX[i] -= 1
                TX = tuple(TX)
                for i in range(K):
                    temp = solve(TX)
                    ret[(i+val)%K] += temp[i]
        #print(X,ret)
        return ret


    d = solve(tuple(C))
    print(d[0])
    exit()
    #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]
    print(ans)


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