結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー tentententen
提出日時 2022-08-17 14:18:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 3,000 ms
コード長 2,175 bytes
コンパイル時間 2,518 ms
コンパイル使用メモリ 77,308 KB
実行使用メモリ 48,732 KB
最終ジャッジ日時 2024-10-04 15:43:40
合計ジャッジ時間 6,405 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,080 KB
testcase_01 AC 52 ms
37,216 KB
testcase_02 AC 55 ms
37,096 KB
testcase_03 AC 52 ms
36,856 KB
testcase_04 AC 50 ms
37,072 KB
testcase_05 AC 50 ms
36,984 KB
testcase_06 AC 50 ms
36,964 KB
testcase_07 AC 50 ms
37,340 KB
testcase_08 AC 50 ms
36,948 KB
testcase_09 AC 51 ms
37,176 KB
testcase_10 AC 51 ms
37,200 KB
testcase_11 AC 51 ms
37,140 KB
testcase_12 AC 53 ms
37,128 KB
testcase_13 AC 52 ms
37,136 KB
testcase_14 AC 52 ms
36,792 KB
testcase_15 AC 52 ms
36,952 KB
testcase_16 AC 54 ms
36,952 KB
testcase_17 AC 53 ms
36,924 KB
testcase_18 AC 54 ms
37,036 KB
testcase_19 AC 54 ms
37,244 KB
testcase_20 AC 54 ms
37,148 KB
testcase_21 AC 56 ms
37,080 KB
testcase_22 AC 56 ms
37,164 KB
testcase_23 AC 55 ms
37,332 KB
testcase_24 AC 55 ms
37,332 KB
testcase_25 AC 56 ms
37,216 KB
testcase_26 AC 56 ms
37,336 KB
testcase_27 AC 56 ms
37,028 KB
testcase_28 AC 56 ms
37,404 KB
testcase_29 AC 55 ms
37,332 KB
testcase_30 AC 87 ms
38,588 KB
testcase_31 AC 92 ms
39,048 KB
testcase_32 AC 111 ms
39,960 KB
testcase_33 AC 129 ms
41,196 KB
testcase_34 AC 132 ms
46,580 KB
testcase_35 AC 140 ms
46,676 KB
testcase_36 AC 142 ms
46,772 KB
testcase_37 AC 171 ms
48,732 KB
testcase_38 AC 139 ms
46,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] values = sc.next().toCharArray();
        int length = values.length;
        int[][] dp = new int[length + 1][100];
        int current = values[0] - '0';
        boolean isZero = false;
        for (int i = 1; i < values[0] - '0'; i++) {
            dp[1][i]++;
        }
        for (int i = 1; i < length; i++) {
            int v = values[i] - '0';
            for (int j = 0; j < 100; j++) {
                if (dp[i][j] == 0) {
                    continue;
                }
                for (int k = 1; k <= 9; k++) {
                    dp[i + 1][j * k % 100] += dp[i][j];
                    dp[i + 1][j * k % 100] %= MOD;
                }
            }
            if (!isZero) {
                for (int j = 1; j < v; j++) {
                    dp[i + 1][current * j % 100]++;
                    dp[i + 1][current * j % 100] %= MOD;
                }
                isZero = (v == 0);
                current *= v;
                current %= 100;
            }
            for (int j = 1; j <= 9; j++) {
                dp[i + 1][j]++;
                dp[i + 1][j] %= MOD;
            }
        }
        if (!isZero) {
            dp[length][current]++;
            dp[length][current] %= MOD;
        }
        System.out.println(dp[length][0]);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0