結果

問題 No.2055 12x34...
ユーザー 沙耶花沙耶花
提出日時 2022-09-30 20:08:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 4,828 ms
コンパイル使用メモリ 267,316 KB
実行使用メモリ 21,248 KB
最終ジャッジ日時 2024-06-02 03:38:15
合計ジャッジ時間 9,350 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 10 ms
6,812 KB
testcase_03 AC 21 ms
6,940 KB
testcase_04 AC 28 ms
6,940 KB
testcase_05 AC 29 ms
6,940 KB
testcase_06 AC 26 ms
6,940 KB
testcase_07 AC 21 ms
6,940 KB
testcase_08 AC 15 ms
6,940 KB
testcase_09 AC 32 ms
6,940 KB
testcase_10 AC 32 ms
6,944 KB
testcase_11 AC 14 ms
6,944 KB
testcase_12 AC 105 ms
13,952 KB
testcase_13 AC 197 ms
20,352 KB
testcase_14 AC 72 ms
10,368 KB
testcase_15 AC 70 ms
10,624 KB
testcase_16 AC 195 ms
21,248 KB
testcase_17 AC 45 ms
6,944 KB
testcase_18 AC 87 ms
6,944 KB
testcase_19 AC 17 ms
6,940 KB
testcase_20 AC 7 ms
6,944 KB
testcase_21 AC 18 ms
6,940 KB
testcase_22 AC 119 ms
7,936 KB
testcase_23 AC 114 ms
10,880 KB
testcase_24 AC 98 ms
13,696 KB
testcase_25 AC 109 ms
11,904 KB
testcase_26 AC 101 ms
12,032 KB
testcase_27 AC 96 ms
14,080 KB
testcase_28 AC 98 ms
12,672 KB
testcase_29 AC 113 ms
13,440 KB
testcase_30 AC 106 ms
11,904 KB
testcase_31 AC 98 ms
11,776 KB
testcase_32 AC 100 ms
12,160 KB
testcase_33 AC 61 ms
6,940 KB
testcase_34 AC 59 ms
6,944 KB
testcase_35 AC 59 ms
6,940 KB
testcase_36 AC 59 ms
6,940 KB
testcase_37 AC 59 ms
6,940 KB
testcase_38 AC 59 ms
6,940 KB
testcase_39 AC 59 ms
6,940 KB
testcase_40 AC 59 ms
6,944 KB
testcase_41 AC 61 ms
6,944 KB
testcase_42 AC 58 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001



int main(){
	
	int n;
	cin>>n;
	vector<long long> a(n);
	rep(i,n)cin>>a[i];
	
	map<int,mint> mp;
	mint ans = 0;
	rep(i,n){
		mint v = mp[a[i]-1];
		ans += v;
		mp[a[i]] += v + 1;
	}
	
	cout<<ans.val()<<endl;
		
	
	return 0;
}
0