結果
問題 | No.1631 Sorting Integers (Multiple of K) Easy |
ユーザー | lloyz |
提出日時 | 2021-12-27 23:27:14 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 926 bytes |
コンパイル時間 | 374 ms |
コンパイル使用メモリ | 82,008 KB |
実行使用メモリ | 211,840 KB |
最終ジャッジ日時 | 2024-10-01 10:11:57 |
合計ジャッジ時間 | 8,478 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
64,384 KB |
testcase_01 | AC | 41 ms
59,264 KB |
testcase_02 | AC | 40 ms
59,136 KB |
testcase_03 | AC | 57 ms
66,944 KB |
testcase_04 | AC | 39 ms
59,264 KB |
testcase_05 | AC | 39 ms
59,264 KB |
testcase_06 | AC | 39 ms
59,392 KB |
testcase_07 | AC | 42 ms
59,648 KB |
testcase_08 | AC | 41 ms
60,032 KB |
testcase_09 | AC | 55 ms
65,792 KB |
testcase_10 | AC | 51 ms
64,512 KB |
testcase_11 | AC | 53 ms
65,024 KB |
testcase_12 | AC | 50 ms
63,232 KB |
testcase_13 | AC | 49 ms
64,256 KB |
testcase_14 | AC | 2,583 ms
200,576 KB |
testcase_15 | TLE | - |
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 | -- | - |
ソースコード
def main(): n, k = map(int, input().split()) C = list(map(int, input().split())) L = [] for i in range(9): for num in range(C[i]): L.append(i + 1) popcount = [0] * 200000 for i in range(1, 200000): popcount[i] = popcount[i // 2] + i % 2 fact = [1] for i in range(1, n + 1): fact.append(fact[-1] * i) DP = [[0] * k for _ in range(1 << n)] DP[0][0] = 1 for bit in range(1 << n): digit = popcount[bit] for i in range(k): if DP[bit][i] != 0: for j in range(n): if (bit >> j) & 1: continue num = pow(10, digit) * L[j] % k r = (i + num) % k DP[bit | (1 << j)][r] += DP[bit][i] ans = DP[-1][0] for i in range(9): ans //= fact[C[i]] print(ans) if __name__ == '__main__': main()