結果

問題 No.2019 Digits Filling for All Substrings
ユーザー tentententen
提出日時 2022-07-26 08:27:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 1,810 bytes
コンパイル時間 1,854 ms
コンパイル使用メモリ 78,292 KB
実行使用メモリ 55,896 KB
最終ジャッジ日時 2024-07-16 00:40:24
合計ジャッジ時間 6,453 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
49,980 KB
testcase_01 AC 51 ms
50,044 KB
testcase_02 AC 49 ms
50,256 KB
testcase_03 AC 51 ms
49,980 KB
testcase_04 AC 137 ms
54,948 KB
testcase_05 AC 118 ms
54,432 KB
testcase_06 AC 93 ms
54,172 KB
testcase_07 AC 83 ms
54,292 KB
testcase_08 AC 146 ms
55,116 KB
testcase_09 AC 167 ms
55,236 KB
testcase_10 AC 162 ms
55,180 KB
testcase_11 AC 136 ms
55,096 KB
testcase_12 AC 159 ms
55,092 KB
testcase_13 AC 159 ms
55,896 KB
testcase_14 AC 54 ms
50,372 KB
testcase_15 AC 54 ms
50,320 KB
testcase_16 AC 67 ms
50,848 KB
testcase_17 AC 54 ms
50,120 KB
testcase_18 AC 61 ms
50,352 KB
testcase_19 AC 53 ms
50,044 KB
testcase_20 AC 52 ms
50,524 KB
testcase_21 AC 53 ms
50,344 KB
testcase_22 AC 52 ms
50,264 KB
testcase_23 AC 52 ms
50,356 KB
testcase_24 AC 109 ms
53,972 KB
testcase_25 AC 139 ms
54,852 KB
testcase_26 AC 98 ms
53,936 KB
testcase_27 AC 61 ms
50,300 KB
testcase_28 AC 59 ms
50,464 KB
testcase_29 AC 133 ms
54,744 KB
testcase_30 AC 162 ms
54,864 KB
testcase_31 AC 148 ms
54,852 KB
testcase_32 AC 87 ms
52,056 KB
testcase_33 AC 122 ms
54,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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[] values = sc.next().toCharArray();
        int[] dp = new int[3];
        int ans = 0;
        for (int i = 0; i < n; i++) {
            int[] next = new int[3];
            if (values[i] == '?') {
                for (int j = 0; j < 10; j++) {
                    for (int k = 0; k < 3; k++) {
                        next[(k * 10 + j) % 3] += dp[k];
                        next[(k * 10 + j) % 3] %= MOD;
                    }
                    next[j % 3]++;
                }
            } else {
                for (int j = 0; j < 3; j++) {
                    next[(j * 10 + values[i] - '0') % 3] += dp[j];
                    next[(j * 10 + values[i] - '0') % 3] %= MOD;
                }
                next[(values[i] - '0') % 3]++;
            }
            ans += next[0];
            ans %= MOD;
            dp = next;
        }
        System.out.println(ans);
    }
}
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