結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー tentententen
提出日時 2023-01-13 15:43:07
言語 Java
(openjdk 23)
結果
AC  
実行時間 819 ms / 3,000 ms
コード長 2,610 bytes
コンパイル時間 2,870 ms
コンパイル使用メモリ 90,024 KB
実行使用メモリ 181,552 KB
最終ジャッジ日時 2024-12-24 10:07:47
合計ジャッジ時間 17,062 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
37,260 KB
testcase_01 AC 57 ms
37,120 KB
testcase_02 AC 59 ms
37,100 KB
testcase_03 AC 83 ms
38,476 KB
testcase_04 AC 56 ms
36,916 KB
testcase_05 AC 58 ms
37,224 KB
testcase_06 AC 61 ms
37,356 KB
testcase_07 AC 60 ms
37,100 KB
testcase_08 AC 59 ms
37,408 KB
testcase_09 AC 72 ms
38,728 KB
testcase_10 AC 59 ms
37,228 KB
testcase_11 AC 64 ms
37,484 KB
testcase_12 AC 62 ms
37,452 KB
testcase_13 AC 59 ms
37,084 KB
testcase_14 AC 786 ms
179,808 KB
testcase_15 AC 802 ms
179,824 KB
testcase_16 AC 819 ms
179,744 KB
testcase_17 AC 815 ms
179,812 KB
testcase_18 AC 803 ms
180,072 KB
testcase_19 AC 802 ms
179,996 KB
testcase_20 AC 804 ms
179,908 KB
testcase_21 AC 743 ms
181,068 KB
testcase_22 AC 795 ms
179,772 KB
testcase_23 AC 803 ms
179,780 KB
testcase_24 AC 793 ms
179,720 KB
testcase_25 AC 778 ms
181,552 KB
testcase_26 AC 74 ms
38,092 KB
testcase_27 AC 599 ms
131,916 KB
testcase_28 AC 309 ms
78,400 KB
testcase_29 AC 325 ms
79,020 KB
testcase_30 AC 416 ms
101,452 KB
testcase_31 AC 596 ms
131,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        int[] values = new int[n];
        int idx = 0;
        long div = 1;
        for (int i = 1; i <= 9; i++) {
            int x = sc.nextInt();
            div *= fact(x);
            for (int j = 0; j < x; j++) {
                values[idx++] = i; 
            }
        }
        long[][] dp = new long[1 << n][];
        for (int i = 0; i < n; i++) {
            dp[1 << i] = new long[k];
            dp[1 << i][values[i] % k]++; 
        }
        for (int i = 1; i < (1 << n); i++) {
            if (dp[i] != null) {
                continue;
            }
            dp[i] = new long[k];
            for (int j = 0; j < n; j++) {
                if ((i & (1 << j)) == 0) {
                    continue;
                }
                int key = (i ^ (1 << j));
                for (int a = 0; a < k; a++) {
                    dp[i][(a * 10 + values[j]) % k] += dp[key][a];
                }
            }
        }
        System.out.println(dp[(1 << n) - 1][0] / div);
    }
    
    static long fact(int x) {
        if (x == 0) {
            return 1;
        } else {
            return fact(x - 1) * x;
        }
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0