結果

問題 No.2019 Digits Filling for All Substrings
ユーザー tentententen
提出日時 2023-06-30 13:13:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 2,144 bytes
コンパイル時間 3,068 ms
コンパイル使用メモリ 91,804 KB
実行使用メモリ 51,840 KB
最終ジャッジ日時 2024-07-07 01:17:27
合計ジャッジ時間 8,514 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,040 KB
testcase_01 AC 52 ms
37,168 KB
testcase_02 AC 52 ms
37,188 KB
testcase_03 AC 53 ms
37,004 KB
testcase_04 AC 153 ms
47,312 KB
testcase_05 AC 140 ms
46,316 KB
testcase_06 AC 117 ms
42,372 KB
testcase_07 AC 113 ms
41,728 KB
testcase_08 AC 194 ms
50,628 KB
testcase_09 AC 226 ms
51,712 KB
testcase_10 AC 225 ms
51,824 KB
testcase_11 AC 203 ms
51,668 KB
testcase_12 AC 204 ms
51,684 KB
testcase_13 AC 220 ms
51,840 KB
testcase_14 AC 57 ms
37,064 KB
testcase_15 AC 57 ms
37,276 KB
testcase_16 AC 83 ms
37,980 KB
testcase_17 AC 57 ms
37,228 KB
testcase_18 AC 60 ms
37,392 KB
testcase_19 AC 53 ms
37,108 KB
testcase_20 AC 54 ms
37,200 KB
testcase_21 AC 53 ms
36,812 KB
testcase_22 AC 53 ms
37,164 KB
testcase_23 AC 52 ms
36,696 KB
testcase_24 AC 163 ms
43,580 KB
testcase_25 AC 187 ms
47,024 KB
testcase_26 AC 150 ms
42,248 KB
testcase_27 AC 80 ms
38,668 KB
testcase_28 AC 67 ms
37,584 KB
testcase_29 AC 156 ms
45,988 KB
testcase_30 AC 173 ms
47,636 KB
testcase_31 AC 171 ms
47,580 KB
testcase_32 AC 103 ms
40,392 KB
testcase_33 AC 156 ms
46,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        char[] inputs = sc.next().toCharArray();
        int[][] dp = new int[n + 1][3];
        int ans = 0;
        for (int i = 1; i <= n; i++) {
            for (int j = 0; j < 10; j++) {
                if (inputs[i - 1] == '?' || inputs[i - 1] - '0' == j) {
                    for (int k = 0; k < 3; k++) {
                        dp[i][(k * 10 + j) % 3] += dp[i - 1][k];
                        dp[i][(k * 10 + j) % 3] %= MOD;
                    }
                    dp[i][j % 3]++;
                    dp[i][j % 3] %= MOD;
                }
            }
            ans += dp[i][0];
            ans %= MOD;
        }
        System.out.println(ans);
    }
}
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