結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー 👑 rin204rin204
提出日時 2022-04-15 17:19:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,455 ms / 3,000 ms
コード長 847 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 205,056 KB
最終ジャッジ日時 2024-12-24 21:29:38
合計ジャッジ時間 22,783 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,968 KB
testcase_01 AC 45 ms
51,968 KB
testcase_02 AC 46 ms
51,968 KB
testcase_03 AC 68 ms
63,104 KB
testcase_04 AC 46 ms
52,224 KB
testcase_05 AC 47 ms
51,968 KB
testcase_06 AC 46 ms
52,224 KB
testcase_07 AC 46 ms
52,224 KB
testcase_08 AC 55 ms
59,136 KB
testcase_09 AC 64 ms
61,440 KB
testcase_10 AC 57 ms
59,776 KB
testcase_11 AC 56 ms
59,904 KB
testcase_12 AC 54 ms
58,496 KB
testcase_13 AC 57 ms
59,904 KB
testcase_14 AC 1,365 ms
198,784 KB
testcase_15 AC 1,402 ms
204,928 KB
testcase_16 AC 1,455 ms
204,928 KB
testcase_17 AC 1,409 ms
205,056 KB
testcase_18 AC 1,454 ms
205,056 KB
testcase_19 AC 1,410 ms
204,672 KB
testcase_20 AC 1,394 ms
204,928 KB
testcase_21 AC 1,279 ms
183,424 KB
testcase_22 AC 1,423 ms
202,624 KB
testcase_23 AC 1,422 ms
202,624 KB
testcase_24 AC 1,415 ms
202,368 KB
testcase_25 AC 1,378 ms
201,600 KB
testcase_26 AC 67 ms
63,744 KB
testcase_27 AC 1,037 ms
160,512 KB
testcase_28 AC 492 ms
114,560 KB
testcase_29 AC 499 ms
114,560 KB
testcase_30 AC 696 ms
134,528 KB
testcase_31 AC 1,025 ms
160,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

def popcount(x):
    x = x - ((x >> 1) & 0x55555555)
    x = (x & 0x33333333) + ((x >> 2) & 0x33333333)
    x = (x + (x >> 4)) & 0x0f0f0f0f
    x += x >> 8
    x += x >> 16
    return x & 0x0000003f

n, K = map(int, input().split())
C = list(map(int, input().split()))
lst = []
for i, c in enumerate(C, 1):
    lst += [i] * c

ten = [1]
for _ in range(n):
    ten.append(ten[-1] * 10 % K)

dp = [[0] * K for _ in range(1 << n)]
dp[0][0] = 1

for bit in range(1, 1 << n):
    pc = popcount(bit)
    for i in range(n):
        if bit >> i & 1:
            x = lst[i] * ten[pc - 1] % K
            for k in range(K):
                v = dp[bit ^ (1 << i)][k]
                dp[bit][(x + k) % K] += v

ans = dp[-1][0]
fact = [1]
for i in range(1, n + 1):
    fact.append(fact[-1] * i)

for c in C:
    ans //= fact[c]
print(ans)
0