結果

問題 No.2055 12x34...
ユーザー charmychachachacharmychachacha
提出日時 2022-08-29 22:07:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 2,562 ms
コンパイル使用メモリ 209,000 KB
実行使用メモリ 26,240 KB
最終ジャッジ日時 2024-11-06 19:14:29
合計ジャッジ時間 7,534 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 7 ms
5,248 KB
testcase_03 AC 14 ms
5,248 KB
testcase_04 AC 18 ms
5,248 KB
testcase_05 AC 19 ms
5,248 KB
testcase_06 AC 17 ms
5,248 KB
testcase_07 AC 13 ms
5,248 KB
testcase_08 AC 12 ms
5,248 KB
testcase_09 AC 20 ms
5,248 KB
testcase_10 AC 22 ms
5,248 KB
testcase_11 AC 10 ms
5,248 KB
testcase_12 AC 149 ms
16,896 KB
testcase_13 AC 276 ms
25,344 KB
testcase_14 AC 89 ms
12,544 KB
testcase_15 AC 92 ms
12,544 KB
testcase_16 AC 271 ms
26,240 KB
testcase_17 AC 53 ms
5,504 KB
testcase_18 AC 108 ms
7,168 KB
testcase_19 AC 19 ms
5,248 KB
testcase_20 AC 8 ms
5,248 KB
testcase_21 AC 20 ms
5,248 KB
testcase_22 AC 145 ms
8,320 KB
testcase_23 AC 148 ms
12,032 KB
testcase_24 AC 88 ms
16,256 KB
testcase_25 AC 141 ms
13,440 KB
testcase_26 AC 124 ms
13,952 KB
testcase_27 AC 103 ms
16,512 KB
testcase_28 AC 114 ms
14,720 KB
testcase_29 AC 150 ms
15,872 KB
testcase_30 AC 130 ms
13,696 KB
testcase_31 AC 116 ms
13,440 KB
testcase_32 AC 113 ms
14,208 KB
testcase_33 AC 61 ms
5,248 KB
testcase_34 AC 62 ms
5,248 KB
testcase_35 AC 62 ms
5,248 KB
testcase_36 AC 61 ms
5,248 KB
testcase_37 AC 63 ms
5,248 KB
testcase_38 AC 61 ms
5,248 KB
testcase_39 AC 63 ms
5,248 KB
testcase_40 AC 63 ms
5,248 KB
testcase_41 AC 62 ms
5,248 KB
testcase_42 AC 62 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
	ios::sync_with_stdio(0);
	cin.tie(0); cout.tie(0);
	int N; int A[200010];
	cin >> N;
	for(int i = 0; i < N; i++) cin >> A[i];
	map<int, long long> mp;
	long long ans = 0;
	for(int i = 0; i < N; i++){
		ans += mp[A[i] - 1] + 1;
		mp[A[i]] += mp[A[i] - 1] + 1;
		ans %= 998244353;
		mp[A[i]] %= 998244353;
	}
	cout << (ans + 998244353 - N) % 998244353 << "\n";
}
0