結果
問題 | No.2055 12x34... |
ユーザー | CAT_CAT |
提出日時 | 2022-08-21 13:51:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 822 bytes |
コンパイル時間 | 5,123 ms |
コンパイル使用メモリ | 273,868 KB |
実行使用メモリ | 814,676 KB |
最終ジャッジ日時 | 2024-10-10 06:08:36 |
合計ジャッジ時間 | 9,361 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 51 ms
28,800 KB |
testcase_03 | AC | 112 ms
60,876 KB |
testcase_04 | AC | 154 ms
83,744 KB |
testcase_05 | AC | 166 ms
90,196 KB |
testcase_06 | AC | 150 ms
81,232 KB |
testcase_07 | AC | 118 ms
64,020 KB |
testcase_08 | AC | 85 ms
46,896 KB |
testcase_09 | AC | 181 ms
99,456 KB |
testcase_10 | AC | 198 ms
106,824 KB |
testcase_11 | AC | 79 ms
43,488 KB |
testcase_12 | MLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
ソースコード
#include <bits/stdc++.h> #include<atcoder/all> #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)=dp.at(i-1); if(dp.at(i-1).find(A.at(i)-1)!=dp.at(i-1).end()){ dp.at(i)[A.at(i)]+=dp.at(i-1)[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; }