結果

問題 No.2055 12x34...
ユーザー CleyLCleyL
提出日時 2022-08-21 19:16:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 771 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 25,344 KB
最終ジャッジ日時 2024-10-10 06:20:41
合計ジャッジ時間 6,459 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 11 ms
6,816 KB
testcase_03 AC 22 ms
6,820 KB
testcase_04 AC 31 ms
6,820 KB
testcase_05 AC 32 ms
6,820 KB
testcase_06 AC 29 ms
6,816 KB
testcase_07 AC 23 ms
6,820 KB
testcase_08 AC 17 ms
6,820 KB
testcase_09 AC 35 ms
6,816 KB
testcase_10 AC 38 ms
6,820 KB
testcase_11 AC 16 ms
6,820 KB
testcase_12 AC 192 ms
16,512 KB
testcase_13 AC 345 ms
24,576 KB
testcase_14 AC 113 ms
12,416 KB
testcase_15 AC 117 ms
12,416 KB
testcase_16 AC 361 ms
25,344 KB
testcase_17 AC 68 ms
6,820 KB
testcase_18 AC 133 ms
6,816 KB
testcase_19 AC 26 ms
6,820 KB
testcase_20 AC 11 ms
6,820 KB
testcase_21 AC 27 ms
6,820 KB
testcase_22 AC 179 ms
7,680 KB
testcase_23 AC 165 ms
11,392 KB
testcase_24 AC 131 ms
15,232 KB
testcase_25 AC 163 ms
12,800 KB
testcase_26 AC 153 ms
12,928 KB
testcase_27 AC 143 ms
15,872 KB
testcase_28 AC 145 ms
13,824 KB
testcase_29 AC 172 ms
14,976 KB
testcase_30 AC 152 ms
12,928 KB
testcase_31 AC 147 ms
12,800 KB
testcase_32 AC 144 ms
13,440 KB
testcase_33 AC 73 ms
6,820 KB
testcase_34 AC 74 ms
6,816 KB
testcase_35 AC 74 ms
6,816 KB
testcase_36 AC 74 ms
6,816 KB
testcase_37 AC 74 ms
6,820 KB
testcase_38 AC 73 ms
6,816 KB
testcase_39 AC 75 ms
6,820 KB
testcase_40 AC 74 ms
6,816 KB
testcase_41 AC 74 ms
6,820 KB
testcase_42 AC 73 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
using namespace std;
const long long MOD = 998244353;
int main(){
    int n;cin>>n;
    map<int,long long> A;
    for(int i = 0; n > i; i++){
        int x;cin>>x;
        A[x]=(A[x]+1+A[x-1])%MOD;
    }
    long long ans = MOD-n;
    for(auto x: A){
        ans = (ans+x.second)%MOD;
    }
    cout << ans << endl;
    
}
0