結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー tentententen
提出日時 2021-03-11 10:34:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,250 bytes
コンパイル時間 2,068 ms
コンパイル使用メモリ 77,716 KB
実行使用メモリ 56,332 KB
最終ジャッジ日時 2024-10-13 00:26:54
合計ジャッジ時間 8,399 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,040 KB
testcase_01 AC 114 ms
53,748 KB
testcase_02 AC 122 ms
53,908 KB
testcase_03 AC 126 ms
53,956 KB
testcase_04 AC 117 ms
53,864 KB
testcase_05 AC 98 ms
52,776 KB
testcase_06 WA -
testcase_07 AC 113 ms
53,892 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 115 ms
54,132 KB
testcase_11 AC 109 ms
53,716 KB
testcase_12 AC 96 ms
52,804 KB
testcase_13 AC 112 ms
54,040 KB
testcase_14 AC 111 ms
53,904 KB
testcase_15 AC 119 ms
54,052 KB
testcase_16 WA -
testcase_17 AC 106 ms
52,712 KB
testcase_18 AC 114 ms
53,924 KB
testcase_19 AC 113 ms
53,788 KB
testcase_20 AC 113 ms
54,144 KB
testcase_21 AC 115 ms
53,792 KB
testcase_22 AC 144 ms
53,888 KB
testcase_23 WA -
testcase_24 AC 122 ms
54,064 KB
testcase_25 WA -
testcase_26 AC 117 ms
53,952 KB
testcase_27 AC 102 ms
52,984 KB
testcase_28 WA -
testcase_29 AC 119 ms
53,696 KB
testcase_30 AC 126 ms
53,784 KB
testcase_31 AC 119 ms
53,928 KB
testcase_32 AC 156 ms
54,356 KB
testcase_33 AC 171 ms
54,636 KB
testcase_34 AC 173 ms
55,060 KB
testcase_35 AC 209 ms
54,852 KB
testcase_36 AC 177 ms
54,924 KB
testcase_37 AC 184 ms
55,128 KB
testcase_38 AC 171 ms
54,268 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;
		        }
		    }
		}
		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