結果

問題 No.372 It's automatic
ユーザー htensaihtensai
提出日時 2020-05-11 20:04:20
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

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