結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー tentententen
提出日時 2022-08-18 17:18:36
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,021 bytes
コンパイル時間 2,284 ms
コンパイル使用メモリ 78,052 KB
実行使用メモリ 196,404 KB
最終ジャッジ日時 2024-10-06 10:27:15
合計ジャッジ時間 11,489 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,332 KB
testcase_01 AC 55 ms
50,416 KB
testcase_02 AC 55 ms
50,208 KB
testcase_03 AC 64 ms
50,468 KB
testcase_04 AC 55 ms
50,344 KB
testcase_05 AC 56 ms
49,912 KB
testcase_06 AC 57 ms
50,480 KB
testcase_07 AC 55 ms
50,216 KB
testcase_08 AC 56 ms
50,340 KB
testcase_09 AC 59 ms
50,244 KB
testcase_10 AC 56 ms
50,212 KB
testcase_11 AC 58 ms
50,472 KB
testcase_12 AC 58 ms
50,000 KB
testcase_13 AC 55 ms
50,340 KB
testcase_14 AC 1,743 ms
189,400 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 340 ms
196,220 KB
testcase_21 AC 440 ms
196,404 KB
testcase_22 AC 607 ms
191,344 KB
testcase_23 AC 1,450 ms
196,332 KB
testcase_24 AC 949 ms
191,352 KB
testcase_25 AC 764 ms
191,932 KB
testcase_26 AC 77 ms
50,392 KB
testcase_27 AC 2,321 ms
142,592 KB
testcase_28 AC 1,052 ms
89,468 KB
testcase_29 AC 957 ms
88,956 KB
testcase_30 AC 1,427 ms
114,044 KB
testcase_31 AC 2,375 ms
141,068 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;
        long div = 1;
        for (int i = 1; i <= 9; i++) {
            int x = sc.nextInt();
            for (int j = 0; j < x; j++) {
                values[idx++] = i;
            }
            div *= proc(x);
        }
        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) / div);
    }
    
    static long proc(int x) {
        if (x == 0) {
            return 1;
        } else {
            return x * proc(x - 1);
        }
    }
    
    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;
                }
                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