結果

問題 No.372 It's automatic
ユーザー koba-e964koba-e964
提出日時 2015-05-26 22:30:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,233 ms / 6,000 ms
コード長 1,112 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 77,928 KB
実行使用メモリ 54,516 KB
最終ジャッジ日時 2024-07-06 09:37:01
合計ジャッジ時間 32,283 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,960 KB
testcase_01 AC 131 ms
54,092 KB
testcase_02 AC 130 ms
53,844 KB
testcase_03 AC 131 ms
54,124 KB
testcase_04 AC 2,197 ms
54,180 KB
testcase_05 AC 2,224 ms
54,464 KB
testcase_06 AC 2,211 ms
54,512 KB
testcase_07 AC 2,206 ms
54,012 KB
testcase_08 AC 2,230 ms
54,116 KB
testcase_09 AC 2,219 ms
54,516 KB
testcase_10 AC 2,198 ms
54,108 KB
testcase_11 AC 2,183 ms
54,284 KB
testcase_12 AC 2,209 ms
54,092 KB
testcase_13 AC 2,208 ms
54,496 KB
testcase_14 AC 2,218 ms
54,384 KB
testcase_15 AC 2,233 ms
54,232 KB
testcase_16 AC 134 ms
53,916 KB
testcase_17 AC 135 ms
53,640 KB
testcase_18 AC 135 ms
53,916 KB
testcase_19 AC 134 ms
53,696 KB
testcase_20 AC 137 ms
54,032 KB
testcase_21 AC 291 ms
54,484 KB
testcase_22 AC 289 ms
54,256 KB
testcase_23 AC 295 ms
54,432 KB
testcase_24 AC 292 ms
54,256 KB
testcase_25 AC 258 ms
54,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
	String s;
	int m;
	Scanner sc = new Scanner(System.in);
	s = sc.next();
	m = sc.nextInt();
	new Main(s,m);
    }
    int m;
    final int mod = (int)(1e9 + 7);
    Main(String s, int m) {
	int len = s.length();
	this.m = m;
	int[][] dp = new int[2][m + 3];
	dp[0][0] = 1;
	int t = 0;
	for (int i = 1; i <= len; ++i) {
	    t = 1 - t; // alternating, t == i % 2
	    for (int j = 0; j < m + 3; ++j) {
		dp[t][j] = dp[1 - t][j];
	    }
	    for (int j = 0; j < m + 3; ++j) {
		int pos = next_state(j, s.charAt(i-1));
		dp[t][pos] += dp[1 - t][j];
		dp[t][pos] %= mod;
	    }
	}
	// accepting states are {1, 3}
	System.out.println((dp[len % 2][1] + dp[len % 2][3]) % mod);
    }
    final int next_state(int st, char ch) {
	if (st == 2) { // fail
	    return 2;
	}
	if (st == 1) { // "0"
	    return 2; // This automaton never accepts string of form /0..*/
	}
	if (st == 0) { // init, ""
	    if (ch == '0') {
		return 1; // "0"
	    }
	    return (ch - '0') % m + 3;
	}
	int q = st - 3;
	return (q * 10 + (ch - '0')) % m + 3;
    }
}
0