結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー tentententen
提出日時 2023-11-21 13:07:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,519 bytes
コンパイル時間 2,292 ms
コンパイル使用メモリ 88,716 KB
実行使用メモリ 56,640 KB
最終ジャッジ日時 2024-09-26 07:08:52
合計ジャッジ時間 5,836 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,272 KB
testcase_01 AC 48 ms
50,416 KB
testcase_02 AC 56 ms
50,416 KB
testcase_03 AC 51 ms
50,356 KB
testcase_04 AC 48 ms
50,412 KB
testcase_05 AC 49 ms
50,240 KB
testcase_06 WA -
testcase_07 AC 50 ms
50,180 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 50 ms
50,348 KB
testcase_11 AC 50 ms
50,336 KB
testcase_12 AC 50 ms
50,288 KB
testcase_13 AC 51 ms
50,300 KB
testcase_14 AC 52 ms
50,072 KB
testcase_15 AC 53 ms
50,336 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 51 ms
50,056 KB
testcase_20 RE -
testcase_21 AC 52 ms
50,356 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 53 ms
50,464 KB
testcase_25 RE -
testcase_26 AC 55 ms
50,436 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 87 ms
51,580 KB
testcase_32 RE -
testcase_33 AC 93 ms
54,112 KB
testcase_34 AC 125 ms
56,640 KB
testcase_35 AC 113 ms
46,328 KB
testcase_36 AC 110 ms
46,104 KB
testcase_37 RE -
testcase_38 AC 110 ms
46,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] inputs = sc.next().toCharArray();
        int[][] dp = new int[inputs.length][100];
        for (int i = 1; i < inputs[0] - '0'; i++) {
            dp[0][i] = 1;
        }
        int base = inputs[0] - '0';
        boolean isZero = false;
        for (int i = 1; i < inputs.length; i++) {
            int x = inputs[i] - '0';
            for (int j = 0; j < 100; j++) {
                for (int k = 1; k < 10; k++) {
                    dp[i][(j * k) % 100] += dp[i - 1][j];
                    dp[i][(j * k) % 100] %= MOD;
                }
            }
            for (int j = 1; j < 10; j++) {
                dp[i][j]++;
            }
            if (isZero) {
                continue;
            }
            for (int j = 1; j < x; j++) {
                dp[i][(base * j) % 100]++;
            }
            if (x == 0) {
                isZero = true;
            }
            base *= x;
        }
        if (!isZero && base == 0) {
            dp[inputs.length - 1][0]++;
        }
        System.out.println(dp[inputs.length - 1][0]);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0