結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 7 ms
5,376 KB
testcase_03 AC 13 ms
5,376 KB
testcase_04 AC 17 ms
5,376 KB
testcase_05 AC 18 ms
5,376 KB
testcase_06 AC 17 ms
5,376 KB
testcase_07 AC 13 ms
5,376 KB
testcase_08 AC 10 ms
5,376 KB
testcase_09 AC 20 ms
5,376 KB
testcase_10 AC 22 ms
5,376 KB
testcase_11 AC 10 ms
5,376 KB
testcase_12 AC 147 ms
17,024 KB
testcase_13 AC 259 ms
25,344 KB
testcase_14 AC 89 ms
12,416 KB
testcase_15 AC 90 ms
12,672 KB
testcase_16 AC 277 ms
26,240 KB
testcase_17 AC 53 ms
5,632 KB
testcase_18 AC 109 ms
7,296 KB
testcase_19 AC 19 ms
5,376 KB
testcase_20 AC 7 ms
5,376 KB
testcase_21 AC 19 ms
5,376 KB
testcase_22 AC 147 ms
8,576 KB
testcase_23 AC 148 ms
12,160 KB
testcase_24 AC 89 ms
16,256 KB
testcase_25 AC 141 ms
13,568 KB
testcase_26 AC 124 ms
13,824 KB
testcase_27 AC 102 ms
16,768 KB
testcase_28 AC 114 ms
14,720 KB
testcase_29 AC 149 ms
16,000 KB
testcase_30 AC 126 ms
13,696 KB
testcase_31 AC 116 ms
13,568 KB
testcase_32 AC 112 ms
14,208 KB
testcase_33 AC 62 ms
5,376 KB
testcase_34 AC 62 ms
5,376 KB
testcase_35 AC 62 ms
5,376 KB
testcase_36 AC 62 ms
5,376 KB
testcase_37 AC 64 ms
5,376 KB
testcase_38 AC 63 ms
5,376 KB
testcase_39 AC 63 ms
5,376 KB
testcase_40 AC 63 ms
5,376 KB
testcase_41 AC 63 ms
5,376 KB
testcase_42 AC 63 ms
5,376 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