結果

問題 No.2055 12x34...
ユーザー HIcoderHIcoder
提出日時 2023-07-11 18:17:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 755 bytes
コンパイル時間 1,067 ms
コンパイル使用メモリ 113,760 KB
実行使用メモリ 27,392 KB
最終ジャッジ日時 2024-09-13 08:35:30
合計ジャッジ時間 6,982 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 12 ms
6,944 KB
testcase_03 AC 24 ms
6,940 KB
testcase_04 AC 33 ms
6,944 KB
testcase_05 AC 36 ms
6,944 KB
testcase_06 AC 32 ms
6,940 KB
testcase_07 AC 26 ms
6,940 KB
testcase_08 AC 19 ms
6,944 KB
testcase_09 AC 38 ms
6,944 KB
testcase_10 AC 42 ms
6,944 KB
testcase_11 AC 18 ms
6,940 KB
testcase_12 AC 160 ms
17,536 KB
testcase_13 AC 287 ms
26,368 KB
testcase_14 AC 104 ms
12,800 KB
testcase_15 AC 103 ms
13,056 KB
testcase_16 AC 294 ms
27,392 KB
testcase_17 AC 77 ms
6,944 KB
testcase_18 AC 152 ms
8,192 KB
testcase_19 AC 29 ms
6,940 KB
testcase_20 AC 11 ms
6,940 KB
testcase_21 AC 30 ms
6,940 KB
testcase_22 AC 204 ms
9,856 KB
testcase_23 AC 187 ms
13,568 KB
testcase_24 AC 130 ms
17,664 KB
testcase_25 AC 181 ms
14,848 KB
testcase_26 AC 165 ms
15,232 KB
testcase_27 AC 143 ms
17,920 KB
testcase_28 AC 153 ms
16,000 KB
testcase_29 AC 189 ms
17,152 KB
testcase_30 AC 166 ms
14,976 KB
testcase_31 AC 155 ms
14,976 KB
testcase_32 AC 151 ms
15,616 KB
testcase_33 AC 92 ms
6,940 KB
testcase_34 AC 94 ms
6,940 KB
testcase_35 AC 92 ms
6,940 KB
testcase_36 AC 92 ms
6,940 KB
testcase_37 AC 93 ms
6,944 KB
testcase_38 AC 91 ms
6,944 KB
testcase_39 AC 93 ms
6,940 KB
testcase_40 AC 92 ms
6,940 KB
testcase_41 AC 92 ms
6,940 KB
testcase_42 AC 92 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
#include<algorithm>
#include<vector>
#include<string>
#include<set>
#include<map>
#include<numeric>
#include<queue>
#include<cmath>
using namespace std;
typedef long long ll;
const ll INF=1LL<<60;
typedef pair<int,int> P;
typedef pair<int,P> PP;
const ll MOD=998244353;
const double PI=acos(-1);

int main(){
    int N;
    cin>>N;
    map<int,ll> mp;
    vector<int> A(N);
    for(int i=0;i<N;i++){
        cin>>A[i];
    }
    vector<ll> dp(N+1,0);

    ll ans=0;
    for(int i=0;i<N;i++){
        ans+=(mp[A[i]-1]+1)%MOD;//i番目から始めることに対する1通り
        ans%=MOD;
        mp[A[i]]+=(mp[A[i]-1]+1)%MOD;
        mp[A[i]]%=MOD;
    }

    ans-=N;
    ans+=MOD;
    ans%=MOD;
    cout<<ans<<endl;
}
0