結果

問題 No.372 It's automatic
ユーザー htensaihtensai
提出日時 2020-05-11 20:04:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,922 ms / 6,000 ms
コード長 846 bytes
コンパイル時間 2,179 ms
コンパイル使用メモリ 77,428 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-07-19 03:49:28
合計ジャッジ時間 28,826 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,180 KB
testcase_01 AC 128 ms
41,228 KB
testcase_02 AC 129 ms
41,052 KB
testcase_03 AC 118 ms
40,376 KB
testcase_04 AC 1,902 ms
41,236 KB
testcase_05 AC 1,899 ms
41,260 KB
testcase_06 AC 1,908 ms
41,472 KB
testcase_07 AC 1,920 ms
41,544 KB
testcase_08 AC 1,901 ms
41,368 KB
testcase_09 AC 1,912 ms
41,560 KB
testcase_10 AC 1,918 ms
41,564 KB
testcase_11 AC 1,899 ms
41,548 KB
testcase_12 AC 1,921 ms
41,596 KB
testcase_13 AC 1,902 ms
41,464 KB
testcase_14 AC 1,922 ms
41,472 KB
testcase_15 AC 1,914 ms
41,552 KB
testcase_16 AC 117 ms
40,064 KB
testcase_17 AC 128 ms
40,984 KB
testcase_18 AC 129 ms
40,980 KB
testcase_19 AC 118 ms
39,956 KB
testcase_20 AC 129 ms
41,248 KB
testcase_21 AC 263 ms
41,148 KB
testcase_22 AC 275 ms
41,300 KB
testcase_23 AC 265 ms
41,356 KB
testcase_24 AC 266 ms
41,472 KB
testcase_25 AC 266 ms
41,388 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();
		int[] prev = new int[m];
		int[] next = new int[m];
		long ans = 0;
		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]++;
		        next[x % m] %= MOD;
		    }
		    int[] tmp = next;
		    next = prev;
		    prev = tmp;
		    Arrays.fill(next, 0);
		}
		ans += prev[0];
		ans %= MOD;
		System.out.println(ans);
	}
}
0