結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー tentententen
提出日時 2021-03-11 10:56:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 203 ms / 3,000 ms
コード長 1,276 bytes
コンパイル時間 4,823 ms
コンパイル使用メモリ 77,004 KB
実行使用メモリ 55,312 KB
最終ジャッジ日時 2024-10-13 00:43:56
合計ジャッジ時間 8,853 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
52,516 KB
testcase_01 AC 121 ms
53,756 KB
testcase_02 AC 122 ms
53,896 KB
testcase_03 AC 105 ms
52,868 KB
testcase_04 AC 116 ms
53,944 KB
testcase_05 AC 120 ms
54,108 KB
testcase_06 AC 116 ms
54,092 KB
testcase_07 AC 119 ms
53,820 KB
testcase_08 AC 117 ms
53,804 KB
testcase_09 AC 120 ms
54,108 KB
testcase_10 AC 123 ms
53,780 KB
testcase_11 AC 119 ms
54,132 KB
testcase_12 AC 108 ms
52,836 KB
testcase_13 AC 118 ms
53,824 KB
testcase_14 AC 120 ms
54,012 KB
testcase_15 AC 104 ms
53,180 KB
testcase_16 AC 119 ms
53,772 KB
testcase_17 AC 119 ms
53,748 KB
testcase_18 AC 119 ms
54,220 KB
testcase_19 AC 122 ms
53,940 KB
testcase_20 AC 121 ms
53,932 KB
testcase_21 AC 116 ms
53,772 KB
testcase_22 AC 108 ms
52,904 KB
testcase_23 AC 107 ms
53,008 KB
testcase_24 AC 126 ms
53,956 KB
testcase_25 AC 123 ms
54,016 KB
testcase_26 AC 121 ms
53,892 KB
testcase_27 AC 108 ms
54,064 KB
testcase_28 AC 123 ms
54,060 KB
testcase_29 AC 122 ms
54,016 KB
testcase_30 AC 119 ms
53,080 KB
testcase_31 AC 131 ms
53,824 KB
testcase_32 AC 149 ms
55,072 KB
testcase_33 AC 177 ms
54,748 KB
testcase_34 AC 196 ms
54,684 KB
testcase_35 AC 203 ms
55,004 KB
testcase_36 AC 182 ms
54,744 KB
testcase_37 AC 202 ms
55,312 KB
testcase_38 AC 189 ms
54,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static int[] next = new int[]{0, 1, 2, 4, 5, 10, 20, 25, 50, 100};
	static final int MOD = 1000000007;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] arr = sc.next().toCharArray();
		int length = arr.length;
		int size = next.length;
		int[][] dp = new int[length][size];
		for (int i = 1; i < arr[0] - '0'; i++) {
		    dp[0][getNum(i)]++;
		}
		int base = getNum(arr[0] - '0');
		for (int i = 1; i < length; i++) {
		    int x = arr[i] - '0';
		    for (int j = 1; j < x; j++) {
		        dp[i][getNum(next[base] * j)]++;
		    }
		    for (int j = 1; j < 10; j++) {
		        dp[i][getNum(j)]++;
		    }
		    base = getNum(next[base] * x);
		    for (int j = 1; j < size; j++) {
		        for (int k = 1; k < 10; k++) {
		            int idx = getNum(next[j] * k);
		            dp[i][idx] += dp[i - 1][j];
		            dp[i][idx] %= MOD;
		        }
		    }
		}
		dp[length - 1][base]++;
		System.out.println(dp[length - 1][size - 1]);
   }
   
   static int getNum(int x) {
       if (x == 0) {
           return 0;
       }
       for (int i = next.length - 1; i > 0; i--) {
           if (x % next[i] == 0) {
               return i;
           }
       }
       return 0;
   }
}

0