結果
問題 | No.1631 Sorting Integers (Multiple of K) Easy |
ユーザー | tenten |
提出日時 | 2022-08-18 17:04:37 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,989 bytes |
コンパイル時間 | 2,575 ms |
コンパイル使用メモリ | 78,352 KB |
実行使用メモリ | 222,440 KB |
最終ジャッジ日時 | 2024-10-06 10:03:05 |
合計ジャッジ時間 | 11,694 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
55,660 KB |
testcase_01 | AC | 58 ms
50,220 KB |
testcase_02 | AC | 58 ms
50,236 KB |
testcase_03 | AC | 117 ms
56,696 KB |
testcase_04 | AC | 59 ms
37,140 KB |
testcase_05 | AC | 61 ms
36,668 KB |
testcase_06 | AC | 57 ms
36,840 KB |
testcase_07 | AC | 57 ms
36,968 KB |
testcase_08 | AC | 58 ms
36,880 KB |
testcase_09 | AC | 82 ms
38,076 KB |
testcase_10 | AC | 62 ms
37,016 KB |
testcase_11 | AC | 64 ms
37,120 KB |
testcase_12 | AC | 59 ms
37,064 KB |
testcase_13 | AC | 60 ms
36,916 KB |
testcase_14 | TLE | - |
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 | -- | - |
ソースコード
import java.io.*; import java.util.*; public class Main { static int k; static HashMap<Long, HashMap<Integer, Long>> dp = new HashMap<>(); static long[] base = new long[11]; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); k = sc.nextInt(); base[0] = 1; for (int i = 1; i <= 10; i++) { base[i] = base[i - 1] * 10; } long mask = 0; for (int i = 0; i < 9; i++) { mask += sc.nextInt() * base[i]; } System.out.println(dfw(mask, 0)); } static long dfw(long mask, int mod) { if (mask == 0) { if (mod == 0) { return 1; } else { return 0; } } if (!dp.containsKey(mask)) { dp.put(mask, new HashMap<>()); } if (!dp.get(mask).containsKey(mod)) { long ans = 0; for (int i = 0; i < 10; i++) { if (mask % base[i + 1] / base[i] == 0) { continue; } ans += dfw(mask - base[i], (mod * 10 + i + 1) % k); } dp.get(mask).put(mod, ans); } return dp.get(mask).get(mod); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }