結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー yuruhiyayuruhiya
提出日時 2021-08-07 14:20:44
言語 Crystal
(1.11.2)
結果
AC  
実行時間 1,268 ms / 3,000 ms
コード長 385 bytes
コンパイル時間 12,670 ms
コンパイル使用メモリ 295,708 KB
実行使用メモリ 140,504 KB
最終ジャッジ日時 2024-09-18 18:10:03
合計ジャッジ時間 28,844 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 6 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 7 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 1,221 ms
140,352 KB
testcase_15 AC 1,256 ms
140,340 KB
testcase_16 AC 1,249 ms
140,284 KB
testcase_17 AC 1,250 ms
140,288 KB
testcase_18 AC 1,268 ms
140,288 KB
testcase_19 AC 1,251 ms
140,288 KB
testcase_20 AC 1,260 ms
140,416 KB
testcase_21 AC 1,112 ms
140,288 KB
testcase_22 AC 1,246 ms
140,320 KB
testcase_23 AC 1,254 ms
140,340 KB
testcase_24 AC 1,261 ms
140,504 KB
testcase_25 AC 1,241 ms
140,276 KB
testcase_26 AC 6 ms
6,944 KB
testcase_27 AC 943 ms
140,488 KB
testcase_28 AC 413 ms
74,620 KB
testcase_29 AC 418 ms
74,556 KB
testcase_30 AC 582 ms
74,752 KB
testcase_31 AC 923 ms
140,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = read_line.split.map(&.to_i)
c = read_line.split.map(&.to_i)
digits = (1..9).flat_map { |x| [x] * c[x - 1] }

dp = Array.new(2**n) { [0i64] * k }
dp[0][0] = 1
(0...2**n).each { |set| (0...k).each { |r| (0...n).each { |i|
  dp[set | (1 << i)][(r * 10 + digits[i]) % k] += dp[set][r] if set.bit(i) == 0
} } }

ans = dp.last[0]
c.each { |c| (1..c).each { |x| ans //= x } }
puts ans
0