結果

問題 No.2055 12x34...
ユーザー ripityripity
提出日時 2022-10-31 23:33:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 2,408 ms
コンパイル使用メモリ 208,772 KB
実行使用メモリ 23,940 KB
最終ジャッジ日時 2024-07-08 11:07:15
合計ジャッジ時間 7,875 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 12 ms
5,376 KB
testcase_03 AC 24 ms
5,376 KB
testcase_04 AC 32 ms
5,376 KB
testcase_05 AC 35 ms
5,376 KB
testcase_06 AC 31 ms
5,376 KB
testcase_07 AC 25 ms
5,376 KB
testcase_08 AC 18 ms
5,376 KB
testcase_09 AC 38 ms
5,376 KB
testcase_10 AC 41 ms
5,376 KB
testcase_11 AC 17 ms
5,376 KB
testcase_12 AC 117 ms
13,492 KB
testcase_13 AC 198 ms
17,872 KB
testcase_14 AC 65 ms
9,556 KB
testcase_15 AC 65 ms
9,644 KB
testcase_16 AC 247 ms
23,940 KB
testcase_17 AC 42 ms
5,376 KB
testcase_18 AC 76 ms
6,912 KB
testcase_19 AC 18 ms
5,376 KB
testcase_20 AC 9 ms
5,376 KB
testcase_21 AC 18 ms
5,376 KB
testcase_22 AC 98 ms
7,588 KB
testcase_23 AC 84 ms
10,140 KB
testcase_24 AC 95 ms
14,236 KB
testcase_25 AC 86 ms
10,780 KB
testcase_26 AC 85 ms
10,908 KB
testcase_27 AC 93 ms
14,236 KB
testcase_28 AC 87 ms
11,288 KB
testcase_29 AC 92 ms
14,368 KB
testcase_30 AC 85 ms
10,912 KB
testcase_31 AC 85 ms
10,776 KB
testcase_32 AC 87 ms
11,036 KB
testcase_33 AC 53 ms
5,376 KB
testcase_34 AC 52 ms
5,376 KB
testcase_35 AC 53 ms
5,376 KB
testcase_36 AC 53 ms
5,376 KB
testcase_37 AC 53 ms
5,376 KB
testcase_38 AC 52 ms
5,376 KB
testcase_39 AC 52 ms
5,376 KB
testcase_40 AC 52 ms
5,376 KB
testcase_41 AC 52 ms
5,376 KB
testcase_42 AC 53 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
    int N;
    constexpr int P = 998244353;
    cin >> N;
    vector<int> A(N), dp(N, 1);
    unordered_map<int, int> dp_sum;
    for( int i = 0; i < N; i++ ) {
        cin >> A[i];
    }
    for( int i = 0; i < N; i++ ) {
        dp[i] += dp_sum[A[i]-1];
        dp_sum[A[i]] += dp[i]%P;
        dp_sum[A[i]] %= P;
    }
    int ans = P-N;
    for( auto& [key, value] : dp_sum ) {
        ans += value;
        ans %= P;
    }
    cout << ans << endl;
}
0