結果

問題 No.2055 12x34...
ユーザー ks2mks2m
提出日時 2022-08-21 13:04:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 718 ms / 2,000 ms
コード長 956 bytes
コンパイル時間 2,312 ms
コンパイル使用メモリ 78,536 KB
実行使用メモリ 91,968 KB
最終ジャッジ日時 2024-10-10 06:00:23
合計ジャッジ時間 23,096 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
49,676 KB
testcase_01 AC 59 ms
50,280 KB
testcase_02 AC 153 ms
57,120 KB
testcase_03 AC 212 ms
62,364 KB
testcase_04 AC 296 ms
66,336 KB
testcase_05 AC 314 ms
70,332 KB
testcase_06 AC 301 ms
66,044 KB
testcase_07 AC 250 ms
62,772 KB
testcase_08 AC 213 ms
58,580 KB
testcase_09 AC 348 ms
71,460 KB
testcase_10 AC 316 ms
70,268 KB
testcase_11 AC 211 ms
58,464 KB
testcase_12 AC 459 ms
66,320 KB
testcase_13 AC 718 ms
78,136 KB
testcase_14 AC 360 ms
63,520 KB
testcase_15 AC 366 ms
63,724 KB
testcase_16 AC 659 ms
76,192 KB
testcase_17 AC 316 ms
63,272 KB
testcase_18 AC 474 ms
75,392 KB
testcase_19 AC 234 ms
58,264 KB
testcase_20 AC 161 ms
54,728 KB
testcase_21 AC 237 ms
58,264 KB
testcase_22 AC 469 ms
71,844 KB
testcase_23 AC 639 ms
78,040 KB
testcase_24 AC 616 ms
80,600 KB
testcase_25 AC 616 ms
78,096 KB
testcase_26 AC 591 ms
85,512 KB
testcase_27 AC 630 ms
91,968 KB
testcase_28 AC 643 ms
89,852 KB
testcase_29 AC 579 ms
81,636 KB
testcase_30 AC 598 ms
85,740 KB
testcase_31 AC 590 ms
86,364 KB
testcase_32 AC 617 ms
90,748 KB
testcase_33 AC 431 ms
75,220 KB
testcase_34 AC 430 ms
75,956 KB
testcase_35 AC 436 ms
75,380 KB
testcase_36 AC 447 ms
75,780 KB
testcase_37 AC 421 ms
76,016 KB
testcase_38 AC 422 ms
75,556 KB
testcase_39 AC 414 ms
75,352 KB
testcase_40 AC 445 ms
76,124 KB
testcase_41 AC 451 ms
76,116 KB
testcase_42 AC 418 ms
75,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.Map;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		int mod = 998244353;
		Map<Integer, Long> dp = new HashMap<>();
		Map<Integer, Long> val = new HashMap<>();
		for (int i = 0; i < n; i++) {
			long d1 = dp.getOrDefault(a[i], 0L);
			long d2 = dp.getOrDefault(a[i] - 1, 0L);
			long v1 = val.getOrDefault(a[i], 0L);
			long v2 = val.getOrDefault(a[i] - 1, 0L);
			dp.put(a[i], (d1 + d2 + v2) % mod);
			val.put(a[i], v1 + 1);
		}

		long ans = 0;
		for (long v : dp.values()) {
			ans += v;
		}
		ans %= mod;
		System.out.println(ans);
	}
}
0