結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー mkawa2mkawa2
提出日時 2021-07-31 15:36:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,234 ms / 3,000 ms
コード長 1,346 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 205,696 KB
最終ジャッジ日時 2024-09-16 09:33:30
合計ジャッジ時間 12,312 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 63 ms
66,432 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 40 ms
57,728 KB
testcase_08 AC 40 ms
57,856 KB
testcase_09 AC 61 ms
67,072 KB
testcase_10 AC 60 ms
65,152 KB
testcase_11 AC 58 ms
65,408 KB
testcase_12 AC 54 ms
62,080 KB
testcase_13 AC 58 ms
64,000 KB
testcase_14 AC 727 ms
199,552 KB
testcase_15 AC 1,058 ms
205,440 KB
testcase_16 AC 1,086 ms
205,696 KB
testcase_17 AC 1,077 ms
205,056 KB
testcase_18 AC 1,234 ms
205,312 KB
testcase_19 AC 1,211 ms
205,312 KB
testcase_20 AC 278 ms
205,312 KB
testcase_21 AC 251 ms
189,696 KB
testcase_22 AC 270 ms
203,008 KB
testcase_23 AC 294 ms
203,008 KB
testcase_24 AC 276 ms
203,008 KB
testcase_25 AC 267 ms
201,856 KB
testcase_26 AC 89 ms
77,568 KB
testcase_27 AC 518 ms
169,472 KB
testcase_28 AC 332 ms
115,840 KB
testcase_29 AC 215 ms
116,608 KB
testcase_30 AC 373 ms
135,040 KB
testcase_31 AC 533 ms
169,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

n, k = LI()
ac = LI()

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

aa = []
for a, c in enumerate(ac, 1):
    aa += [a]*c

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

popcnt = lambda x: bin(x).count("1")

def ng(s, j):
    a = aa[j]
    for i in range(j-1, -1, -1):
        if aa[i] == a:
            if s >> i & 1 == 0: return True
        else:
            break
    return False

for s in range(1 << n):
    c = popcnt(s)
    for r in range(k):
        pre = dp[s][r]
        if pre == 0: continue
        for j, a in enumerate(aa):
            if s >> j & 1: continue
            if ng(s, j): continue
            ns = s | 1 << j
            nr = (r+a*ten[c])%k
            dp[ns][nr] += pre

print(dp[-1][0])
0