結果
問題 | No.1631 Sorting Integers (Multiple of K) Easy |
ユーザー | 👑 rin204 |
提出日時 | 2022-04-15 17:18:01 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 857 bytes |
コンパイル時間 | 260 ms |
コンパイル使用メモリ | 82,688 KB |
実行使用メモリ | 868,480 KB |
最終ジャッジ日時 | 2024-12-24 21:29:05 |
合計ジャッジ時間 | 39,112 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
57,216 KB |
testcase_01 | MLE | - |
testcase_02 | AC | 40 ms
57,472 KB |
testcase_03 | MLE | - |
testcase_04 | AC | 41 ms
57,344 KB |
testcase_05 | AC | 42 ms
501,888 KB |
testcase_06 | AC | 44 ms
57,600 KB |
testcase_07 | AC | 42 ms
52,352 KB |
testcase_08 | AC | 44 ms
52,352 KB |
testcase_09 | AC | 52 ms
61,568 KB |
testcase_10 | AC | 51 ms
60,288 KB |
testcase_11 | AC | 55 ms
62,208 KB |
testcase_12 | AC | 47 ms
58,880 KB |
testcase_13 | AC | 52 ms
60,160 KB |
testcase_14 | AC | 2,326 ms
310,656 KB |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 319 ms
105,856 KB |
testcase_21 | AC | 439 ms
113,920 KB |
testcase_22 | AC | 559 ms
142,336 KB |
testcase_23 | AC | 1,657 ms
258,944 KB |
testcase_24 | AC | 1,085 ms
187,520 KB |
testcase_25 | AC | 863 ms
177,024 KB |
testcase_26 | AC | 83 ms
72,192 KB |
testcase_27 | AC | 2,811 ms
384,768 KB |
testcase_28 | AC | 1,202 ms
217,728 KB |
testcase_29 | AC | 1,098 ms
204,800 KB |
testcase_30 | AC | 1,643 ms
261,248 KB |
testcase_31 | MLE | - |
ソースコード
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 = [{} 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, v in dp[bit ^ (1 << i)].items(): dp[bit][(x + k) % K] = dp[bit].get((x + k) % K, 0) + v ans = dp[-1].get(0, 0) fact = [1] for i in range(1, n + 1): fact.append(fact[-1] * i) for c in C: ans //= fact[c] print(ans)