結果

問題 No.2019 Digits Filling for All Substrings
ユーザー tenten
提出日時 2022-07-26 08:27:31
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

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