結果

問題 No.2019 Digits Filling for All Substrings
ユーザー tentententen
提出日時 2023-04-13 14:40:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 2,095 bytes
コンパイル時間 2,826 ms
コンパイル使用メモリ 91,472 KB
実行使用メモリ 44,344 KB
最終ジャッジ日時 2024-10-09 12:34:09
合計ジャッジ時間 8,024 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,608 KB
testcase_01 AC 52 ms
37,108 KB
testcase_02 AC 51 ms
37,004 KB
testcase_03 AC 52 ms
37,016 KB
testcase_04 AC 125 ms
42,884 KB
testcase_05 AC 110 ms
42,016 KB
testcase_06 AC 112 ms
41,784 KB
testcase_07 AC 94 ms
40,616 KB
testcase_08 AC 158 ms
44,108 KB
testcase_09 AC 178 ms
44,280 KB
testcase_10 AC 175 ms
44,124 KB
testcase_11 AC 164 ms
43,120 KB
testcase_12 AC 181 ms
44,344 KB
testcase_13 AC 147 ms
43,076 KB
testcase_14 AC 55 ms
36,888 KB
testcase_15 AC 54 ms
37,052 KB
testcase_16 AC 82 ms
38,296 KB
testcase_17 AC 56 ms
37,292 KB
testcase_18 AC 57 ms
36,916 KB
testcase_19 AC 54 ms
36,996 KB
testcase_20 AC 51 ms
36,820 KB
testcase_21 AC 53 ms
36,616 KB
testcase_22 AC 53 ms
36,888 KB
testcase_23 AC 55 ms
36,604 KB
testcase_24 AC 116 ms
41,720 KB
testcase_25 AC 150 ms
43,020 KB
testcase_26 AC 115 ms
40,932 KB
testcase_27 AC 64 ms
37,248 KB
testcase_28 AC 66 ms
37,912 KB
testcase_29 AC 129 ms
44,148 KB
testcase_30 AC 173 ms
44,220 KB
testcase_31 AC 152 ms
43,040 KB
testcase_32 AC 87 ms
40,096 KB
testcase_33 AC 138 ms
42,772 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();
        int[] current = new int[3];
        int ans = 0;
        for (char c : sc.next().toCharArray()) {
            int[] next = new int[3];
            for (int i = 0; i <= 9; i++) {
                if (c - '0' == i || c == '?') {
                    for (int j = 0; j < 3; j++) {
                        next[(j * 10 + i) % 3] += current[j];
                        next[(j * 10 + i) % 3] %= MOD;
                    }
                    next[i % 3]++;
                }
            }
            ans += next[0];
            ans %= MOD;
            current = next;
        }
        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