結果

問題 No.372 It's automatic
ユーザー tomeruntomerun
提出日時 2016-07-17 21:07:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 4,100 ms / 6,000 ms
コード長 748 bytes
コンパイル時間 2,468 ms
コンパイル使用メモリ 76,740 KB
実行使用メモリ 42,500 KB
最終ジャッジ日時 2024-10-15 15:27:34
合計ジャッジ時間 49,814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,248 KB
testcase_01 AC 131 ms
41,328 KB
testcase_02 AC 132 ms
41,588 KB
testcase_03 AC 134 ms
41,392 KB
testcase_04 AC 3,094 ms
42,232 KB
testcase_05 AC 3,073 ms
42,180 KB
testcase_06 AC 4,100 ms
42,268 KB
testcase_07 AC 3,088 ms
42,320 KB
testcase_08 AC 3,115 ms
42,348 KB
testcase_09 AC 3,620 ms
42,500 KB
testcase_10 AC 3,580 ms
41,984 KB
testcase_11 AC 4,086 ms
42,164 KB
testcase_12 AC 3,020 ms
42,320 KB
testcase_13 AC 3,082 ms
41,932 KB
testcase_14 AC 3,287 ms
42,248 KB
testcase_15 AC 3,059 ms
41,840 KB
testcase_16 AC 137 ms
41,472 KB
testcase_17 AC 135 ms
41,336 KB
testcase_18 AC 135 ms
41,360 KB
testcase_19 AC 135 ms
41,368 KB
testcase_20 AC 133 ms
41,316 KB
testcase_21 AC 353 ms
41,536 KB
testcase_22 AC 338 ms
41,812 KB
testcase_23 AC 353 ms
41,592 KB
testcase_24 AC 322 ms
41,568 KB
testcase_25 AC 353 ms
41,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	static Scanner sc = new Scanner(System.in);
	static final int MOD = 1_000_000_007;

	public static void main(String[] args) {
		char[] S = sc.next().toCharArray();
		int M = sc.nextInt();
		long[][] count = new long[2][M];
		long ans = 0;
		int t = 0;
		for (int i = 0; i < S.length; ++i) {
			for (int j = 0; j < M; ++j) {
				count[t][j] = count[1-t][j];
			}
			for (int j = 0; j < M; ++j) {
				int next = (j * 10 + S[i] - '0') % M;
				count[t][next] += count[1 - t][j];
				if (count[t][next] >= MOD) count[t][next] -= MOD;
			}
			if (S[i] == '0') {
				++ans;
			} else {
				count[t][(S[i] - '0') % M]++;
			}
			t = 1 - t;
		}
		ans += count[1-t][0];
		System.out.println(ans % MOD);
	}

}
0