結果
問題 | No.1631 Sorting Integers (Multiple of K) Easy |
ユーザー | 箱星 |
提出日時 | 2021-07-30 21:27:51 |
言語 | Kotlin (1.9.23) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,213 bytes |
コンパイル時間 | 12,938 ms |
コンパイル使用メモリ | 439,060 KB |
実行使用メモリ | 85,208 KB |
最終ジャッジ日時 | 2024-09-15 23:01:53 |
合計ジャッジ時間 | 21,965 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 285 ms
52,864 KB |
testcase_01 | AC | 292 ms
85,208 KB |
testcase_02 | AC | 291 ms
49,728 KB |
testcase_03 | AC | 346 ms
80,352 KB |
testcase_04 | AC | 287 ms
49,572 KB |
testcase_05 | AC | 291 ms
49,648 KB |
testcase_06 | AC | 287 ms
49,584 KB |
testcase_07 | AC | 289 ms
49,748 KB |
testcase_08 | AC | 290 ms
49,672 KB |
testcase_09 | AC | 296 ms
49,772 KB |
testcase_10 | AC | 302 ms
49,820 KB |
testcase_11 | AC | 292 ms
49,636 KB |
testcase_12 | AC | 291 ms
49,700 KB |
testcase_13 | AC | 295 ms
49,588 KB |
testcase_14 | TLE | - |
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 | -- | - |
ソースコード
import java.io.PrintWriter import java.util.* import kotlin.math.* fun PrintWriter.solve() { val n = nextInt() val k = nextInt() val c = IntArray(9) { nextInt() } var ans = 0L val pow10 = IntArray(n) { 1 } for (i in 0 until n - 1) { pow10[i + 1] = pow10[i] * 10 % k } fun dfs(r: Int, step: Int, a: IntArray) { if (step == n) { if (r == 0) ans++ } else { for (i in 0 until 9) { if (a[i] > 0) { val r2 = (r + pow10[step] * (i + 1)) % k val a2 = a.copyOf() a2[i]-- dfs(r2, step + 1, a2) } } } } dfs(0, 0, c) println(ans) } fun main() { val writer = PrintWriter(System.out, false) writer.solve() writer.flush() } // region Scanner private var st = StringTokenizer("") private val br = System.`in`.bufferedReader() fun next(): String { while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine()) return st.nextToken() } fun nextInt() = next().toInt() fun nextLong() = next().toLong() fun nextLine() = br.readLine() fun nextDouble() = next().toDouble() // endregion