結果

問題 No.372 It's automatic
ユーザー tentententen
提出日時 2023-12-14 08:27:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,987 ms / 6,000 ms
コード長 2,264 bytes
コンパイル時間 3,198 ms
コンパイル使用メモリ 91,036 KB
実行使用メモリ 39,164 KB
最終ジャッジ日時 2024-09-27 05:39:34
合計ジャッジ時間 29,663 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,716 KB
testcase_01 AC 53 ms
36,972 KB
testcase_02 AC 52 ms
36,548 KB
testcase_03 AC 54 ms
36,852 KB
testcase_04 AC 1,946 ms
39,048 KB
testcase_05 AC 1,977 ms
38,900 KB
testcase_06 AC 1,957 ms
38,936 KB
testcase_07 AC 1,956 ms
39,056 KB
testcase_08 AC 1,987 ms
38,700 KB
testcase_09 AC 1,953 ms
38,848 KB
testcase_10 AC 1,954 ms
39,036 KB
testcase_11 AC 1,938 ms
39,064 KB
testcase_12 AC 1,967 ms
39,164 KB
testcase_13 AC 1,944 ms
39,056 KB
testcase_14 AC 1,955 ms
39,132 KB
testcase_15 AC 1,976 ms
38,892 KB
testcase_16 AC 53 ms
36,876 KB
testcase_17 AC 53 ms
36,880 KB
testcase_18 AC 55 ms
36,780 KB
testcase_19 AC 54 ms
36,428 KB
testcase_20 AC 55 ms
36,436 KB
testcase_21 AC 194 ms
38,928 KB
testcase_22 AC 189 ms
38,468 KB
testcase_23 AC 180 ms
38,756 KB
testcase_24 AC 195 ms
38,768 KB
testcase_25 AC 185 ms
38,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] inputs = sc.next().toCharArray();
        int length = inputs.length;
        int m = sc.nextInt();
        int[] current = new int[m];
        int[] next = new int[m];
        int ans = 0;
        for (int i = 0; i < length; i++) {
            int x = inputs[i] - '0';
            for (int j = 0; j < m; j++) {
                next[j] += current[j];
                next[j] %= MOD;
                next[(j * 10 + x) % m] += current[j];
                next[(j * 10 + x) % m] %= MOD;
            }
            if (x == 0) {
                ans++;
            } else {
                next[x % m]++;
            }
            int[] tmp = next;
            next = current;
            current = tmp;
            Arrays.fill(next, 0);
        }
        System.out.println((current[0] + ans) % MOD);
    }
}
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