結果

問題 No.372 It's automatic
ユーザー tentententen
提出日時 2021-12-03 15:52:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,441 ms / 6,000 ms
コード長 1,788 bytes
コンパイル時間 2,174 ms
コンパイル使用メモリ 78,368 KB
実行使用メモリ 40,852 KB
最終ジャッジ日時 2024-07-05 19:43:32
合計ジャッジ時間 33,518 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,544 KB
testcase_01 AC 51 ms
36,920 KB
testcase_02 AC 51 ms
36,400 KB
testcase_03 AC 53 ms
36,556 KB
testcase_04 AC 2,383 ms
38,636 KB
testcase_05 AC 2,441 ms
38,792 KB
testcase_06 AC 2,331 ms
40,852 KB
testcase_07 AC 2,312 ms
38,860 KB
testcase_08 AC 2,293 ms
38,716 KB
testcase_09 AC 2,412 ms
38,884 KB
testcase_10 AC 2,291 ms
38,860 KB
testcase_11 AC 2,272 ms
38,788 KB
testcase_12 AC 2,300 ms
38,484 KB
testcase_13 AC 2,420 ms
38,760 KB
testcase_14 AC 2,398 ms
38,736 KB
testcase_15 AC 2,299 ms
38,764 KB
testcase_16 AC 52 ms
36,984 KB
testcase_17 AC 53 ms
36,648 KB
testcase_18 AC 52 ms
36,292 KB
testcase_19 AC 52 ms
36,932 KB
testcase_20 AC 54 ms
36,284 KB
testcase_21 AC 199 ms
38,892 KB
testcase_22 AC 197 ms
38,668 KB
testcase_23 AC 199 ms
38,756 KB
testcase_24 AC 203 ms
38,940 KB
testcase_25 AC 200 ms
38,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] values = sc.next().toCharArray();
        int k = sc.nextInt();
        int length = values.length;
        int[] prev = new int[k];
        int[] next = new int[k];
        int ans = 0;
        for (int i = 0; i < length; i++) {
            int x = values[i] - '0';
            for (int j = 0; j < k && i > 0; j++) {
                if (prev[j] > 0) {
                    next[(j * 10 + x) % k] += prev[j];
                    next[(j * 10 + x) % k] %= MOD;
                    next[j] += prev[j];
                    next[j] %= MOD;
                }
            }
            if (x == 0) {
                ans++;
                ans %= MOD;
            } else {
                next[x % k]++;
            }
            int[] tmp = prev;
            prev = next;
            next = tmp;
            Arrays.fill(next, 0);
        }
        System.out.println((ans + prev[0]) % 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 {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0