結果

問題 No.2055 12x34...
ユーザー nononnonon
提出日時 2024-09-23 22:54:58
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 7,865 ms
コンパイル使用メモリ 254,384 KB
実行使用メモリ 19,968 KB
最終ジャッジ日時 2024-09-23 23:00:11
合計ジャッジ時間 15,266 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 7 ms
6,944 KB
testcase_03 AC 11 ms
6,944 KB
testcase_04 AC 15 ms
6,944 KB
testcase_05 AC 16 ms
6,944 KB
testcase_06 AC 15 ms
6,940 KB
testcase_07 AC 21 ms
6,944 KB
testcase_08 AC 9 ms
6,944 KB
testcase_09 AC 17 ms
6,940 KB
testcase_10 AC 18 ms
6,940 KB
testcase_11 AC 9 ms
6,944 KB
testcase_12 AC 123 ms
13,184 KB
testcase_13 AC 226 ms
19,200 KB
testcase_14 AC 75 ms
9,984 KB
testcase_15 AC 71 ms
10,112 KB
testcase_16 AC 233 ms
19,968 KB
testcase_17 AC 28 ms
6,944 KB
testcase_18 AC 57 ms
6,940 KB
testcase_19 AC 10 ms
6,940 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 AC 11 ms
6,944 KB
testcase_22 AC 78 ms
6,944 KB
testcase_23 AC 82 ms
9,344 KB
testcase_24 AC 72 ms
12,416 KB
testcase_25 AC 80 ms
10,368 KB
testcase_26 AC 76 ms
10,624 KB
testcase_27 AC 71 ms
12,672 KB
testcase_28 AC 75 ms
11,136 KB
testcase_29 AC 107 ms
12,032 KB
testcase_30 AC 80 ms
10,368 KB
testcase_31 AC 73 ms
10,368 KB
testcase_32 AC 76 ms
10,752 KB
testcase_33 AC 36 ms
6,940 KB
testcase_34 AC 38 ms
6,940 KB
testcase_35 AC 50 ms
6,940 KB
testcase_36 AC 37 ms
6,940 KB
testcase_37 AC 38 ms
6,940 KB
testcase_38 AC 37 ms
6,940 KB
testcase_39 AC 38 ms
6,944 KB
testcase_40 AC 38 ms
6,940 KB
testcase_41 AC 48 ms
6,944 KB
testcase_42 AC 37 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace std;
using mint = atcoder::modint998244353;
int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N;
    cin >> N;
    map<int, mint> dp;
    for (int i = 0; i < N; i++) {
        int A;
        cin >> A;
        dp[A] += dp[A - 1] + 1;
    }
    mint ans = -N;
    for (auto [key, val] : dp) ans += val;
    cout << ans.val() << endl;
}
0