結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー ks2mks2m
提出日時 2021-03-05 22:47:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,348 bytes
コンパイル時間 2,271 ms
コンパイル使用メモリ 77,680 KB
実行使用メモリ 60,864 KB
最終ジャッジ日時 2024-10-07 03:43:46
合計ジャッジ時間 9,338 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,992 KB
testcase_01 AC 131 ms
53,892 KB
testcase_02 AC 130 ms
54,228 KB
testcase_03 AC 127 ms
53,956 KB
testcase_04 AC 127 ms
54,072 KB
testcase_05 AC 128 ms
53,996 KB
testcase_06 AC 126 ms
53,968 KB
testcase_07 AC 125 ms
53,960 KB
testcase_08 AC 127 ms
54,160 KB
testcase_09 AC 128 ms
54,552 KB
testcase_10 AC 126 ms
54,048 KB
testcase_11 AC 126 ms
54,164 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 128 ms
53,944 KB
testcase_15 WA -
testcase_16 AC 127 ms
53,956 KB
testcase_17 AC 129 ms
54,208 KB
testcase_18 AC 128 ms
53,988 KB
testcase_19 WA -
testcase_20 AC 129 ms
54,316 KB
testcase_21 WA -
testcase_22 AC 128 ms
54,216 KB
testcase_23 AC 129 ms
54,284 KB
testcase_24 AC 129 ms
54,224 KB
testcase_25 AC 117 ms
52,980 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 128 ms
54,000 KB
testcase_29 AC 126 ms
53,888 KB
testcase_30 AC 156 ms
54,304 KB
testcase_31 AC 157 ms
54,500 KB
testcase_32 AC 165 ms
54,340 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 225 ms
60,392 KB
testcase_38 AC 216 ms
60,864 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];
					}
					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