結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー PSL24251284PSL24251284
提出日時 2021-07-31 03:30:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 515 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 205,440 KB
最終ジャッジ日時 2024-09-16 07:15:58
合計ジャッジ時間 50,869 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,840 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 70 ms
67,072 KB
testcase_04 AC 41 ms
51,584 KB
testcase_05 AC 40 ms
51,584 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 45 ms
52,608 KB
testcase_08 AC 57 ms
62,976 KB
testcase_09 AC 71 ms
68,096 KB
testcase_10 AC 52 ms
61,056 KB
testcase_11 AC 59 ms
63,488 KB
testcase_12 AC 56 ms
62,336 KB
testcase_13 AC 52 ms
60,800 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 2,978 ms
189,440 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 64 ms
66,304 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
c = [0] + list(map(int,input().split()))
S = []
for i in range(10):
    for j in range(c[i]):
        S.append(i)

dp = [[0]*K for i in range(1<<N)]
dp[0][0] = 1
for bit in range(1,1<<N):
    n = -1
    for i in range(N):
        if (bit>>i)&1:
            n += 1
    for k in range(K):
        for i in range(N):
            if (bit>>i)&1:
                dp[bit][k] += dp[bit^(1<<i)][(k-S[n]*10**i)%K]
ans = dp[-1][0]
for i in range(10):
    if c[i]:
        ans //= c[i]
print(ans)
0