結果

問題 No.372 It's automatic
ユーザー tentententen
提出日時 2020-09-30 09:00:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,910 ms / 6,000 ms
コード長 962 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 77,048 KB
実行使用メモリ 41,672 KB
最終ジャッジ日時 2024-07-05 08:58:03
合計ジャッジ時間 28,754 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,184 KB
testcase_01 AC 125 ms
40,868 KB
testcase_02 AC 127 ms
41,020 KB
testcase_03 AC 114 ms
39,808 KB
testcase_04 AC 1,882 ms
41,532 KB
testcase_05 AC 1,889 ms
41,660 KB
testcase_06 AC 1,888 ms
41,556 KB
testcase_07 AC 1,899 ms
41,456 KB
testcase_08 AC 1,899 ms
41,672 KB
testcase_09 AC 1,898 ms
41,384 KB
testcase_10 AC 1,889 ms
41,188 KB
testcase_11 AC 1,869 ms
41,372 KB
testcase_12 AC 1,897 ms
41,260 KB
testcase_13 AC 1,910 ms
41,500 KB
testcase_14 AC 1,887 ms
41,340 KB
testcase_15 AC 1,880 ms
41,404 KB
testcase_16 AC 126 ms
41,012 KB
testcase_17 AC 127 ms
41,232 KB
testcase_18 AC 112 ms
39,940 KB
testcase_19 AC 127 ms
41,016 KB
testcase_20 AC 129 ms
41,136 KB
testcase_21 AC 260 ms
40,892 KB
testcase_22 AC 269 ms
41,248 KB
testcase_23 AC 253 ms
41,328 KB
testcase_24 AC 265 ms
41,076 KB
testcase_25 AC 258 ms
41,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] arr = sc.next().toCharArray();
        int length = arr.length;
        int m = sc.nextInt();
        long ans = 0;
        int[] prev = new int[m];
        int[] next = new int[m];
        for (int i = 0; i < length; i++) {
            int x = arr[i] - '0';
            for (int j = 0; j < m; j++) {
                next[j] += prev[j];
                next[j] %= MOD;
                next[(j * 10 + x) % m] += prev[j];
                next[(j * 10 + x) % m] %= MOD;
            }
            if (x == 0) {
                ans++;
            } else {
                next[x % m]++;
            }
            int[] tmp = next;
            next = prev;
            prev = tmp;
            Arrays.fill(next, 0);
        }
        System.out.println((prev[0] + ans) % MOD);
    }
}
0