結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー tentententen
提出日時 2024-07-23 10:05:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 3,000 ms
コード長 2,894 bytes
コンパイル時間 2,509 ms
コンパイル使用メモリ 79,356 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-07-23 10:05:53
合計ジャッジ時間 6,604 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,044 KB
testcase_01 AC 57 ms
50,580 KB
testcase_02 AC 58 ms
50,264 KB
testcase_03 AC 55 ms
50,412 KB
testcase_04 AC 54 ms
50,428 KB
testcase_05 AC 55 ms
50,640 KB
testcase_06 AC 55 ms
50,468 KB
testcase_07 AC 53 ms
50,204 KB
testcase_08 AC 53 ms
50,384 KB
testcase_09 AC 54 ms
50,264 KB
testcase_10 AC 54 ms
50,288 KB
testcase_11 AC 55 ms
50,420 KB
testcase_12 AC 54 ms
50,316 KB
testcase_13 AC 56 ms
50,568 KB
testcase_14 AC 55 ms
50,512 KB
testcase_15 AC 55 ms
50,348 KB
testcase_16 AC 55 ms
50,316 KB
testcase_17 AC 55 ms
50,284 KB
testcase_18 AC 56 ms
50,324 KB
testcase_19 AC 57 ms
50,368 KB
testcase_20 AC 58 ms
50,552 KB
testcase_21 AC 57 ms
50,524 KB
testcase_22 AC 57 ms
50,428 KB
testcase_23 AC 58 ms
50,428 KB
testcase_24 AC 60 ms
50,684 KB
testcase_25 AC 58 ms
50,132 KB
testcase_26 AC 61 ms
49,952 KB
testcase_27 AC 58 ms
50,492 KB
testcase_28 AC 58 ms
50,428 KB
testcase_29 AC 59 ms
50,376 KB
testcase_30 AC 87 ms
52,464 KB
testcase_31 AC 86 ms
52,852 KB
testcase_32 AC 107 ms
52,864 KB
testcase_33 AC 115 ms
53,168 KB
testcase_34 AC 149 ms
53,224 KB
testcase_35 AC 123 ms
52,980 KB
testcase_36 AC 150 ms
53,080 KB
testcase_37 AC 156 ms
54,344 KB
testcase_38 AC 124 ms
53,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
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 length = inputs.length;
        int[] values = new int[]{0, 1, 2, 4, 5, 10, 20, 25, 50, 100};
        int size = values.length;
        Map<Integer, Integer> idxes = new HashMap<>();
        for (int i = 0; i < size; i++) {
            idxes.put(values[i], i);
        }
        int[][] dp = new int[length][size];
        for (int i = 1; i < inputs[0] - '0'; i++) {
            dp[0][idxes.get(getGCD(i, 100))]++;
        }
        int type;
        if (inputs[0] == '0') {
            type = 0;
        } else {
            type = idxes.get(getGCD(inputs[0] - '0', 100));
        }
        for (int i = 1; i < length; i++) {
            int x = inputs[i] - '0';
            for (int j = 1; j < size; j++) {
                for (int k = 1; k < 10; k++) {
                    int current = idxes.get(getGCD(values[j] * k, 100));
                    dp[i][current] += dp[i - 1][j];
                    dp[i][current] %= MOD;
                }
            }
            for (int j = 1; j < 10; j++) {
                dp[i][idxes.get(getGCD(j, 100))]++;
            }
            if (type >= 1) {
                for (int j = 1; j < x; j++) {
                    int current = idxes.get(getGCD(values[type] * j, 100));
                    dp[i][current]++;
                }
                if (x == 0) {
                    type = 0;
                } else {
                    type = idxes.get(getGCD(values[type] * x, 100));
                }
            }
        }
        dp[length - 1][type]++;
        System.out.println(dp[length - 1][size - 1] % MOD);
    }
    
    static int getGCD(int x, int y) {
        if (y == 0) {
            return x;
        } else {
            return getGCD(y, x % y);
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0