結果

問題 No.372 It's automatic
ユーザー tentententen
提出日時 2021-12-03 14:47:55
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 1,680 bytes
コンパイル時間 2,273 ms
コンパイル使用メモリ 77,796 KB
実行使用メモリ 743,684 KB
最終ジャッジ日時 2024-07-05 18:50:27
合計ジャッジ時間 16,926 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,944 KB
testcase_01 AC 52 ms
36,628 KB
testcase_02 AC 50 ms
36,676 KB
testcase_03 AC 50 ms
37,024 KB
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 52 ms
37,168 KB
testcase_17 AC 51 ms
37,160 KB
testcase_18 AC 57 ms
37,236 KB
testcase_19 AC 51 ms
36,728 KB
testcase_20 AC 51 ms
37,336 KB
testcase_21 AC 202 ms
78,496 KB
testcase_22 AC 244 ms
78,616 KB
testcase_23 AC 203 ms
78,528 KB
testcase_24 AC 208 ms
78,420 KB
testcase_25 AC 217 ms
78,204 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 k = sc.nextInt();
        int length = values.length;
        int[][] dp = new int[length][k];
        int ans = 0;
        for (int i = 0; i < length; i++) {
            int x = values[i] - '0';
            for (int j = 0; j < k && i > 0; j++) {
                if (dp[i - 1][j] > 0) {
                    dp[i][(j * 10 + x) % k] += dp[i - 1][j];
                    dp[i][(j * 10 + x) % k] %= MOD;
                    dp[i][j] += dp[i - 1][j];
                    dp[i][j] %= MOD;
                }
            }
            if (x == 0) {
                ans++;
                ans %= MOD;
            } else {
                dp[i][x % k]++;
            }
        }
        System.out.println((ans + dp[length - 1][0]) % MOD);
    }
}
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 {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0