結果
問題 | No.1631 Sorting Integers (Multiple of K) Easy |
ユーザー | minimum |
提出日時 | 2021-07-30 21:14:55 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 711 bytes |
コンパイル時間 | 297 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 821,248 KB |
最終ジャッジ日時 | 2024-09-15 22:26:31 |
合計ジャッジ時間 | 7,564 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,752 KB |
testcase_01 | AC | 31 ms
10,752 KB |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | AC | 1,161 ms
16,640 KB |
testcase_04 | AC | 31 ms
10,752 KB |
testcase_05 | AC | 31 ms
10,752 KB |
testcase_06 | AC | 31 ms
10,752 KB |
testcase_07 | AC | 31 ms
10,752 KB |
testcase_08 | AC | 52 ms
10,880 KB |
testcase_09 | AC | 1,196 ms
16,768 KB |
testcase_10 | AC | 89 ms
11,136 KB |
testcase_11 | AC | 397 ms
12,928 KB |
testcase_12 | AC | 197 ms
11,904 KB |
testcase_13 | AC | 53 ms
10,880 KB |
testcase_14 | MLE | - |
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 | -- | - |
ソースコード
from math import factorial n, k = map(int, input().split()) c = list(map(int, input().split())) d = [] for i in range(1, 10): for j in range(c[i - 1]): d.append(i) dp = [[[0] * k for j in range(2 ** n)] for i in range(n + 1)] dp[0][0][0] = 1 for i in range(n): now = d[i] for j in range(2 ** n): for x in range(n): if (j >> x) & 1 == 0: y = now * pow(10, x, k) y %= k for l in range(k): dp[i + 1][j + (2 ** x)][(l + y) % k] += dp[i][j][l] for l in range(k): dp[i + 1][j][l] += dp[i][j][l] ans = dp[n][2 ** n - 1][0] for i in range(9): ans //= factorial(c[i]) print(ans)