結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー tentententen
提出日時 2022-08-18 17:54:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 675 ms / 3,000 ms
コード長 1,958 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 77,516 KB
実行使用メモリ 182,108 KB
最終ジャッジ日時 2024-10-06 11:25:31
合計ジャッジ時間 10,145 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,136 KB
testcase_01 AC 51 ms
37,116 KB
testcase_02 AC 52 ms
36,780 KB
testcase_03 AC 62 ms
37,320 KB
testcase_04 AC 53 ms
36,916 KB
testcase_05 AC 52 ms
37,068 KB
testcase_06 AC 52 ms
36,740 KB
testcase_07 AC 51 ms
37,028 KB
testcase_08 AC 52 ms
37,048 KB
testcase_09 AC 54 ms
37,836 KB
testcase_10 AC 51 ms
36,808 KB
testcase_11 AC 52 ms
37,148 KB
testcase_12 AC 52 ms
36,776 KB
testcase_13 AC 54 ms
37,204 KB
testcase_14 AC 451 ms
182,008 KB
testcase_15 AC 634 ms
181,548 KB
testcase_16 AC 636 ms
181,548 KB
testcase_17 AC 650 ms
181,556 KB
testcase_18 AC 636 ms
181,924 KB
testcase_19 AC 675 ms
181,932 KB
testcase_20 AC 226 ms
181,732 KB
testcase_21 AC 225 ms
181,908 KB
testcase_22 AC 223 ms
181,904 KB
testcase_23 AC 230 ms
182,108 KB
testcase_24 AC 228 ms
181,792 KB
testcase_25 AC 229 ms
181,628 KB
testcase_26 AC 58 ms
37,468 KB
testcase_27 AC 340 ms
131,764 KB
testcase_28 AC 199 ms
78,188 KB
testcase_29 AC 153 ms
78,620 KB
testcase_30 AC 225 ms
100,652 KB
testcase_31 AC 313 ms
131,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static int n;
    static int k;
    static long[][] dp;
    static int[] values;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        n = sc.nextInt();
        k = sc.nextInt();
        values = new int[n];
        int idx = 0;
        for (int i = 1; i <= 9; i++) {
            int x = sc.nextInt();
            for (int j = 0; j < x; j++) {
                values[idx++] = i;
            }
        }
        dp = new long[1 << n][k];
        for (long[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        Arrays.fill(dp[0], 0);
        dp[0][0] = 1;
        System.out.println(dfw((1 << n) - 1, 0));
    }
    
    static long dfw(int mask, int mod) {
        if (dp[mask][mod] < 0) {
            dp[mask][mod] = 0;
            for (int i = 0; i < n; i++) {
                if ((mask & (1 << i)) == 0) {
                    continue;
                }
                if (i > 0 && values[i] == values[i - 1] && ((mask & (1 << (i - 1)))) != 0) {
                    continue;
                }
                dp[mask][mod] += dfw(mask ^ (1 << i), (mod * 10 + values[i]) % k);
            }
        }
        return dp[mask][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();
    }
}
0