結果

問題 No.2055 12x34...
ユーザー butsurizukibutsurizuki
提出日時 2022-08-21 04:11:39
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 10,133 ms
コンパイル使用メモリ 337,204 KB
実行使用メモリ 33,720 KB
最終ジャッジ日時 2024-10-09 19:26:42
合計ジャッジ時間 15,431 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 10 ms
5,248 KB
testcase_03 AC 19 ms
5,568 KB
testcase_04 AC 25 ms
6,820 KB
testcase_05 AC 27 ms
6,952 KB
testcase_06 AC 25 ms
6,728 KB
testcase_07 AC 19 ms
5,612 KB
testcase_08 AC 15 ms
5,348 KB
testcase_09 AC 30 ms
7,036 KB
testcase_10 AC 31 ms
7,148 KB
testcase_11 AC 14 ms
5,300 KB
testcase_12 AC 149 ms
21,388 KB
testcase_13 AC 266 ms
32,516 KB
testcase_14 AC 92 ms
15,484 KB
testcase_15 AC 93 ms
15,876 KB
testcase_16 AC 281 ms
33,720 KB
testcase_17 AC 69 ms
9,096 KB
testcase_18 AC 136 ms
13,856 KB
testcase_19 AC 25 ms
5,980 KB
testcase_20 AC 10 ms
5,248 KB
testcase_21 AC 26 ms
5,988 KB
testcase_22 AC 183 ms
17,004 KB
testcase_23 AC 175 ms
18,028 KB
testcase_24 AC 117 ms
22,132 KB
testcase_25 AC 164 ms
19,440 KB
testcase_26 AC 151 ms
19,572 KB
testcase_27 AC 131 ms
22,516 KB
testcase_28 AC 138 ms
20,460 KB
testcase_29 AC 178 ms
21,740 KB
testcase_30 AC 154 ms
19,440 KB
testcase_31 AC 141 ms
19,312 KB
testcase_32 AC 136 ms
19,952 KB
testcase_33 AC 77 ms
9,324 KB
testcase_34 AC 77 ms
9,084 KB
testcase_35 AC 78 ms
9,204 KB
testcase_36 AC 77 ms
9,328 KB
testcase_37 AC 78 ms
9,328 KB
testcase_38 AC 77 ms
9,332 KB
testcase_39 AC 78 ms
9,328 KB
testcase_40 AC 78 ms
9,304 KB
testcase_41 AC 77 ms
9,328 KB
testcase_42 AC 77 ms
9,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "testlib.h"
#include <bits/stdc++.h>
#define mod 998244353

using namespace std;

int main(int argc, char* argv[]){
  registerValidation(argc, argv);

  long long n=inf.readLong(2ll,200000ll);inf.readEoln();
  vector<long long> a=inf.readLongs(n,1ll,1000000000ll);inf.readEoln();
  inf.readEof();
  map<long long,long long> dp;
  for(int i=0;i<n;i++){
    dp[a[i]]++;
    dp[a[i]]+=dp[a[i]-1];
    dp[a[i]]%=mod;
  }
  long long res=0;
  for(auto &nx : dp){
    res+=nx.second;res%=mod;
  }
  res+=(mod-n);res%=mod;
  cout << res << "\n";
  return 0;
}
0