結果

問題 No.2019 Digits Filling for All Substrings
ユーザー ShirotsumeShirotsume
提出日時 2022-02-25 13:19:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 1,120 bytes
コンパイル時間 2,344 ms
コンパイル使用メモリ 77,632 KB
実行使用メモリ 43,788 KB
最終ジャッジ日時 2024-07-03 06:58:55
合計ジャッジ時間 10,971 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,528 KB
testcase_01 AC 121 ms
41,716 KB
testcase_02 AC 121 ms
41,280 KB
testcase_03 AC 124 ms
41,576 KB
testcase_04 AC 269 ms
43,492 KB
testcase_05 AC 253 ms
42,404 KB
testcase_06 AC 231 ms
42,416 KB
testcase_07 AC 204 ms
42,468 KB
testcase_08 AC 311 ms
43,712 KB
testcase_09 AC 300 ms
43,516 KB
testcase_10 AC 292 ms
43,624 KB
testcase_11 AC 308 ms
43,756 KB
testcase_12 AC 306 ms
43,784 KB
testcase_13 AC 312 ms
43,064 KB
testcase_14 AC 134 ms
41,436 KB
testcase_15 AC 120 ms
40,420 KB
testcase_16 AC 164 ms
42,052 KB
testcase_17 AC 148 ms
41,392 KB
testcase_18 AC 130 ms
40,220 KB
testcase_19 AC 123 ms
41,248 KB
testcase_20 AC 123 ms
41,416 KB
testcase_21 AC 120 ms
41,432 KB
testcase_22 AC 126 ms
41,388 KB
testcase_23 AC 115 ms
40,216 KB
testcase_24 AC 263 ms
42,564 KB
testcase_25 AC 255 ms
42,828 KB
testcase_26 AC 211 ms
42,036 KB
testcase_27 AC 145 ms
41,652 KB
testcase_28 AC 130 ms
40,312 KB
testcase_29 AC 280 ms
42,712 KB
testcase_30 AC 317 ms
43,464 KB
testcase_31 AC 305 ms
43,788 KB
testcase_32 AC 226 ms
42,280 KB
testcase_33 AC 263 ms
42,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	  public static void main(String[] args) {
	        Scanner sc = new Scanner(System.in);
	        int n = sc.nextInt();
	        char[] s = sc.next().toCharArray();
	        long[] dp = new long[3];
	        long[] e = new long[3];
	        long ans = 0;
	        long mod = 998244353;
	        for(int i = 0; i < n; i++){
	        	if(s[i] == '?'){
	        		for(int j = 0; j < 3; j++){
	        			for(int k = 0; k < 10; k++){
	        				e[(j + k) % 3] += dp[j];
	        				e[(j + k) % 3] %= mod;
	        			}
	        		}
	        		for(int k = 0; k < 10; k++){
	        			e[k % 3] += 1;
	        		}
	        	}
	        	else{
	        		int now = s[i] - '0';
	        		for(int j = 0; j < 3; j++){
	        			e[(j + now) % 3] += dp[j];
	        			e[(j + now) % 3] %= mod;
	        		}
	        		e[now % 3] += 1;
	        	}
	        	ans += e[0];
	        	ans %= mod;
	        	dp[0] = e[0];
	        	dp[1] = e[1];
	        	dp[2] = e[2];
	        	e[0] = 0;
	        	e[1] = 0;
	        	e[2] = 0;
	        }
	        System.out.println(ans);

	    }
}
0