結果

問題 No.2055 12x34...
ユーザー hiro71687khiro71687k
提出日時 2024-02-12 15:03:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 543 bytes
コンパイル時間 4,149 ms
コンパイル使用メモリ 270,760 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-09-28 18:02:36
合計ジャッジ時間 10,897 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 11 ms
6,820 KB
testcase_03 AC 22 ms
6,820 KB
testcase_04 AC 31 ms
6,816 KB
testcase_05 AC 34 ms
6,820 KB
testcase_06 AC 32 ms
6,816 KB
testcase_07 AC 25 ms
6,816 KB
testcase_08 AC 19 ms
6,816 KB
testcase_09 AC 37 ms
6,820 KB
testcase_10 AC 41 ms
6,820 KB
testcase_11 AC 17 ms
6,820 KB
testcase_12 AC 157 ms
17,152 KB
testcase_13 AC 265 ms
25,856 KB
testcase_14 AC 91 ms
12,544 KB
testcase_15 AC 94 ms
12,800 KB
testcase_16 AC 271 ms
26,752 KB
testcase_17 AC 70 ms
6,816 KB
testcase_18 AC 145 ms
7,552 KB
testcase_19 AC 28 ms
6,816 KB
testcase_20 AC 10 ms
6,816 KB
testcase_21 AC 27 ms
6,816 KB
testcase_22 AC 193 ms
9,088 KB
testcase_23 AC 174 ms
12,672 KB
testcase_24 AC 117 ms
16,896 KB
testcase_25 AC 165 ms
14,080 KB
testcase_26 AC 157 ms
14,592 KB
testcase_27 AC 135 ms
17,152 KB
testcase_28 AC 145 ms
15,232 KB
testcase_29 AC 180 ms
16,384 KB
testcase_30 AC 158 ms
14,208 KB
testcase_31 AC 146 ms
14,208 KB
testcase_32 AC 145 ms
14,720 KB
testcase_33 AC 84 ms
6,820 KB
testcase_34 AC 86 ms
6,820 KB
testcase_35 AC 83 ms
6,820 KB
testcase_36 AC 79 ms
6,820 KB
testcase_37 AC 80 ms
6,820 KB
testcase_38 AC 78 ms
6,816 KB
testcase_39 AC 83 ms
6,820 KB
testcase_40 AC 82 ms
6,824 KB
testcase_41 AC 84 ms
6,820 KB
testcase_42 AC 83 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include<atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll mod=998244353;
ll inf=1000000000000000001;//10^17
int main(){
    ll n;
    cin >> n;
    vector<ll>a(n);
    for (ll i = 0; i < n; i++)
    {
        cin >> a[i];
    }
    map<ll,ll>memo;
    ll ans=0;
    for (ll i = 0; i < n; i++)
    {
        ans+=memo[a[i]-1];
        memo[a[i]]+=memo[a[i]-1]+1;
        ans%=mod;
        memo[a[i]]%=mod;
    }
    cout << ans << endl;
}
0