結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー ks2mks2m
提出日時 2021-03-05 23:05:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 207 ms / 3,000 ms
コード長 1,376 bytes
コンパイル時間 2,194 ms
コンパイル使用メモリ 77,316 KB
実行使用メモリ 49,280 KB
最終ジャッジ日時 2024-10-07 04:33:54
合計ジャッジ時間 7,942 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,996 KB
testcase_01 AC 113 ms
40,672 KB
testcase_02 AC 109 ms
40,756 KB
testcase_03 AC 101 ms
40,040 KB
testcase_04 AC 110 ms
40,816 KB
testcase_05 AC 94 ms
39,688 KB
testcase_06 AC 118 ms
41,304 KB
testcase_07 AC 102 ms
39,804 KB
testcase_08 AC 100 ms
40,116 KB
testcase_09 AC 113 ms
40,924 KB
testcase_10 AC 113 ms
40,808 KB
testcase_11 AC 110 ms
40,928 KB
testcase_12 AC 112 ms
40,824 KB
testcase_13 AC 115 ms
41,176 KB
testcase_14 AC 100 ms
39,900 KB
testcase_15 AC 114 ms
41,100 KB
testcase_16 AC 116 ms
40,988 KB
testcase_17 AC 111 ms
41,008 KB
testcase_18 AC 115 ms
40,756 KB
testcase_19 AC 117 ms
41,012 KB
testcase_20 AC 110 ms
39,632 KB
testcase_21 AC 109 ms
39,864 KB
testcase_22 AC 101 ms
39,576 KB
testcase_23 AC 115 ms
40,800 KB
testcase_24 AC 114 ms
40,748 KB
testcase_25 AC 113 ms
40,824 KB
testcase_26 AC 112 ms
41,004 KB
testcase_27 AC 121 ms
41,420 KB
testcase_28 AC 116 ms
41,192 KB
testcase_29 AC 121 ms
40,808 KB
testcase_30 AC 146 ms
41,848 KB
testcase_31 AC 130 ms
42,048 KB
testcase_32 AC 150 ms
42,212 KB
testcase_33 AC 154 ms
44,152 KB
testcase_34 AC 199 ms
48,756 KB
testcase_35 AC 207 ms
49,280 KB
testcase_36 AC 200 ms
48,852 KB
testcase_37 AC 190 ms
49,196 KB
testcase_38 AC 194 ms
48,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		char[] s = sc.next().toCharArray();
		sc.close();

		int[] pj = {0, 0, 1, 0, 2, 0, 1, 0, 3, 0};
		int[] pk = {0, 0, 0, 0, 0, 1, 0, 0, 0, 0};
		int n = s.length;
		int mod = 1000000007;

		long[][][] dp0 = new long[n + 1][3][3];
		long[][][] dp1 = new long[n + 1][3][3];
		dp0[0][0][0] = 1;
		for (int i = 0; i < n; i++) {
			int c = s[i] - '0';
			for (int j = 0; j < 3; j++) {
				for (int k = 0; k < 3; k++) {
					for (int x = 1; x < c; x++) {
						int nj = Math.min(j + pj[x], 2);
						int nk = Math.min(k + pk[x], 2);
						dp1[i + 1][nj][nk] += dp0[i][j][k];
					}
					if (c > 0) {
						int nj = Math.min(j + pj[c], 2);
						int nk = Math.min(k + pk[c], 2);
						dp0[i + 1][nj][nk] += dp0[i][j][k];
					}
				}
			}

			for (int j = 0; j < 3; j++) {
				for (int k = 0; k < 3; k++) {
					for (int x = 1; x <= 9; x++) {
						int nj = Math.min(j + pj[x], 2);
						int nk = Math.min(k + pk[x], 2);
						dp1[i + 1][nj][nk] += dp1[i][j][k];
					}
				}
			}
			dp1[i + 1][0][0] += 1;

			for (int j = 0; j < 3; j++) {
				for (int k = 0; k < 3; k++) {
					dp0[i + 1][j][k] %= mod;
					dp1[i + 1][j][k] %= mod;
				}
			}
		}
		long ans = dp0[n][2][2] + dp1[n][2][2];
		ans %= mod;
		System.out.println(ans);
	}
}
0