結果

問題 No.2055 12x34...
ユーザー CAT_CATCAT_CAT
提出日時 2022-08-21 14:07:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 4,657 ms
コンパイル使用メモリ 273,992 KB
実行使用メモリ 26,696 KB
最終ジャッジ日時 2024-10-10 06:10:05
合計ジャッジ時間 10,570 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 13 ms
6,816 KB
testcase_03 AC 26 ms
9,336 KB
testcase_04 AC 36 ms
11,812 KB
testcase_05 AC 38 ms
12,488 KB
testcase_06 AC 35 ms
11,436 KB
testcase_07 AC 28 ms
9,568 KB
testcase_08 AC 21 ms
7,860 KB
testcase_09 AC 43 ms
13,428 KB
testcase_10 AC 46 ms
14,076 KB
testcase_11 AC 20 ms
7,476 KB
testcase_12 AC 133 ms
15,556 KB
testcase_13 AC 238 ms
23,172 KB
testcase_14 AC 84 ms
11,648 KB
testcase_15 AC 86 ms
11,648 KB
testcase_16 AC 253 ms
23,916 KB
testcase_17 AC 82 ms
9,632 KB
testcase_18 AC 155 ms
14,888 KB
testcase_19 AC 30 ms
6,820 KB
testcase_20 AC 12 ms
6,816 KB
testcase_21 AC 31 ms
6,816 KB
testcase_22 AC 214 ms
18,276 KB
testcase_23 AC 200 ms
22,060 KB
testcase_24 AC 143 ms
26,184 KB
testcase_25 AC 193 ms
23,396 KB
testcase_26 AC 177 ms
23,788 KB
testcase_27 AC 159 ms
26,696 KB
testcase_28 AC 166 ms
24,640 KB
testcase_29 AC 206 ms
25,864 KB
testcase_30 AC 178 ms
23,596 KB
testcase_31 AC 168 ms
23,596 KB
testcase_32 AC 163 ms
24,084 KB
testcase_33 AC 91 ms
14,244 KB
testcase_34 AC 91 ms
14,160 KB
testcase_35 AC 92 ms
14,252 KB
testcase_36 AC 93 ms
14,220 KB
testcase_37 AC 94 ms
14,224 KB
testcase_38 AC 91 ms
14,188 KB
testcase_39 AC 94 ms
14,344 KB
testcase_40 AC 92 ms
14,400 KB
testcase_41 AC 91 ms
14,380 KB
testcase_42 AC 93 ms
14,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include<atcoder/all>
#define int long long
#define double long double
using namespace std;
int size(int number){
    string numstr=to_string(number);
    return numstr.size();
}
constexpr int MOD=998244353;
signed main(void){
    int N;
    cin>>N;
    vector<int>A(N);
    for(int i=0;i<N;++i){
        cin>>A.at(i);
    }
    vector<map<int,int>>dp(N);
    dp.at(0)[A.at(0)]=1;
    for(int i=1;i<N;++i){
        dp.at(i)=move(dp.at(i-1));
        if(dp.at(i).find(A.at(i)-1)!=dp.at(i).end()){
            dp.at(i)[A.at(i)]+=dp.at(i)[A.at(i)-1]+1;
            dp.at(i)[A.at(i)]%=MOD;
        }else{
            dp.at(i)[A.at(i)]+=1;
            dp.at(i)[A.at(i)]%=MOD;
        }
    }
    int ans=0;
    for(auto e:dp.at(N-1)){
        ans+=e.second;
        ans%=MOD;
    }
    cout<<(ans-A.size())%MOD<<endl;

}

 
0