結果

問題 No.2055 12x34...
ユーザー BenriBot_ccbsBenriBot_ccbs
提出日時 2022-08-28 17:42:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 1,695 ms
コンパイル使用メモリ 175,300 KB
実行使用メモリ 22,496 KB
最終ジャッジ日時 2024-10-15 15:39:51
合計ジャッジ時間 7,793 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 13 ms
6,816 KB
testcase_03 AC 27 ms
6,816 KB
testcase_04 AC 36 ms
6,816 KB
testcase_05 AC 40 ms
6,820 KB
testcase_06 AC 35 ms
6,820 KB
testcase_07 AC 28 ms
6,820 KB
testcase_08 AC 21 ms
6,816 KB
testcase_09 AC 43 ms
6,816 KB
testcase_10 AC 46 ms
6,816 KB
testcase_11 AC 20 ms
6,816 KB
testcase_12 AC 107 ms
12,668 KB
testcase_13 AC 185 ms
16,412 KB
testcase_14 AC 62 ms
8,992 KB
testcase_15 AC 65 ms
8,960 KB
testcase_16 AC 219 ms
22,496 KB
testcase_17 AC 45 ms
6,820 KB
testcase_18 AC 81 ms
6,820 KB
testcase_19 AC 20 ms
6,816 KB
testcase_20 AC 9 ms
6,816 KB
testcase_21 AC 20 ms
6,816 KB
testcase_22 AC 104 ms
6,816 KB
testcase_23 AC 91 ms
8,576 KB
testcase_24 AC 100 ms
12,668 KB
testcase_25 AC 91 ms
9,212 KB
testcase_26 AC 91 ms
9,344 KB
testcase_27 AC 99 ms
12,672 KB
testcase_28 AC 92 ms
9,728 KB
testcase_29 AC 99 ms
12,668 KB
testcase_30 AC 92 ms
9,088 KB
testcase_31 AC 91 ms
9,212 KB
testcase_32 AC 92 ms
9,592 KB
testcase_33 AC 57 ms
6,820 KB
testcase_34 AC 57 ms
6,816 KB
testcase_35 AC 58 ms
6,820 KB
testcase_36 AC 58 ms
6,816 KB
testcase_37 AC 58 ms
6,816 KB
testcase_38 AC 57 ms
6,816 KB
testcase_39 AC 57 ms
6,820 KB
testcase_40 AC 58 ms
6,816 KB
testcase_41 AC 58 ms
6,816 KB
testcase_42 AC 58 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

ll mod = 998244353;

int main(){
    ll N;
    cin >> N;
    unordered_map<ll,ll> dp; //iで終わる階差1の等差数列の個数
    
    ll ans=0;
    for(int i=0;i<N;i++){
        ll a;
        cin >> a;
        ans += dp[a-1]%mod; // 追加した分だけをansに+=
        dp[a] += 1+dp[a-1];//(a)と(...,a-1,a)を新たに追加
        dp[a] %= mod;
    }
    
    cout << ans%mod;
}
0