結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー tcltktcltk
提出日時 2021-09-11 02:59:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,610 ms / 3,000 ms
コード長 899 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 217,456 KB
最終ジャッジ日時 2024-06-13 03:10:41
合計ジャッジ時間 29,945 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
86,688 KB
testcase_01 AC 140 ms
86,784 KB
testcase_02 AC 126 ms
86,740 KB
testcase_03 AC 161 ms
89,472 KB
testcase_04 AC 126 ms
86,712 KB
testcase_05 AC 140 ms
86,784 KB
testcase_06 AC 125 ms
86,608 KB
testcase_07 AC 139 ms
86,912 KB
testcase_08 AC 127 ms
87,100 KB
testcase_09 AC 156 ms
89,856 KB
testcase_10 AC 138 ms
89,140 KB
testcase_11 AC 154 ms
89,344 KB
testcase_12 AC 138 ms
89,588 KB
testcase_13 AC 157 ms
89,088 KB
testcase_14 AC 1,631 ms
211,548 KB
testcase_15 AC 2,475 ms
217,456 KB
testcase_16 AC 2,482 ms
217,444 KB
testcase_17 AC 2,474 ms
217,308 KB
testcase_18 AC 2,610 ms
217,036 KB
testcase_19 AC 2,469 ms
217,448 KB
testcase_20 AC 519 ms
217,156 KB
testcase_21 AC 608 ms
201,804 KB
testcase_22 AC 702 ms
215,068 KB
testcase_23 AC 1,395 ms
214,976 KB
testcase_24 AC 1,064 ms
215,204 KB
testcase_25 AC 938 ms
213,808 KB
testcase_26 AC 146 ms
90,644 KB
testcase_27 AC 1,791 ms
181,632 KB
testcase_28 AC 964 ms
128,020 KB
testcase_29 AC 867 ms
128,652 KB
testcase_30 AC 1,245 ms
147,220 KB
testcase_31 AC 1,792 ms
180,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """3 2
# 1 2 0 0 0 0 0 0 0
# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10


N, K = map(int, input().split())
C = list(map(int, input().split()))

A = []
for i in range(9):
    A += [i+1] * C[i]

dp = [[0] * K for _ in range(1<<N)]
dp[0][0] = 1
for mask in range(1<<N):
    for r in range(K):
        if dp[mask][r] == 0:
            continue
        for i in range(N):
            if mask & (1<<i):
                continue
            mask1 = mask | (1<<i)
            r1 = (10*r+A[i]) % K
            dp[mask1][r1] += dp[mask][r]


ans = dp[(1<<N)-1][0]
for i in range(9):
    for k in range(1, C[i]+1):
        ans //= k
print(ans)
0