結果

問題 No.372 It's automatic
ユーザー tentententen
提出日時 2023-06-13 16:59:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,141 ms / 6,000 ms
コード長 2,277 bytes
コンパイル時間 3,594 ms
コンパイル使用メモリ 91,704 KB
実行使用メモリ 53,596 KB
最終ジャッジ日時 2024-06-22 02:24:13
合計ジャッジ時間 31,039 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,240 KB
testcase_01 AC 56 ms
50,308 KB
testcase_02 AC 58 ms
50,376 KB
testcase_03 AC 56 ms
50,580 KB
testcase_04 AC 2,064 ms
53,440 KB
testcase_05 AC 2,104 ms
53,548 KB
testcase_06 AC 2,141 ms
53,184 KB
testcase_07 AC 2,005 ms
53,156 KB
testcase_08 AC 1,878 ms
53,232 KB
testcase_09 AC 2,038 ms
53,596 KB
testcase_10 AC 2,089 ms
53,240 KB
testcase_11 AC 2,113 ms
53,540 KB
testcase_12 AC 2,128 ms
53,236 KB
testcase_13 AC 2,098 ms
53,436 KB
testcase_14 AC 2,109 ms
53,508 KB
testcase_15 AC 2,047 ms
53,244 KB
testcase_16 AC 56 ms
50,512 KB
testcase_17 AC 57 ms
50,372 KB
testcase_18 AC 55 ms
50,440 KB
testcase_19 AC 55 ms
50,536 KB
testcase_20 AC 56 ms
50,368 KB
testcase_21 AC 227 ms
53,332 KB
testcase_22 AC 229 ms
53,216 KB
testcase_23 AC 237 ms
53,264 KB
testcase_24 AC 236 ms
53,144 KB
testcase_25 AC 227 ms
53,364 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 m = sc.nextInt();
        int[] current = new int[m];
        int[] next = new int[m];
        int ans = 0;
        for (char c : inputs) {
            int x = c - '0';
            for (int i = 0; i < m; i++) {
                next[(i * 10 + x) % m] += current[i];
                next[(i * 10 + x) % m] %= MOD;
            }
            if (x > 0) {
                next[x % m]++;
                next[x % m] %= MOD;
            } else {
                ans++;
                ans %= MOD;
            }
            ans += next[0];
            ans %= MOD;
            for (int i = 0; i < m; i++) {
                current[i] += next[i];
                current[i] %= MOD;
            }
            Arrays.fill(next, 0);
        }
        System.out.println(ans);
    }
}
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