結果

問題 No.1709 Indistinguishable by MEX
ユーザー 蜜蜂蜜蜂
提出日時 2021-10-15 22:02:15
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 1,215 bytes
コンパイル時間 3,923 ms
コンパイル使用メモリ 233,872 KB
実行使用メモリ 5,272 KB
最終ジャッジ日時 2023-10-17 20:18:15
合計ジャッジ時間 5,704 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 35 ms
5,272 KB
testcase_09 AC 28 ms
5,272 KB
testcase_10 AC 26 ms
4,348 KB
testcase_11 AC 22 ms
4,348 KB
testcase_12 AC 21 ms
4,348 KB
testcase_13 AC 30 ms
5,272 KB
testcase_14 AC 28 ms
5,272 KB
testcase_15 AC 29 ms
5,272 KB
testcase_16 AC 37 ms
5,272 KB
testcase_17 AC 35 ms
5,272 KB
testcase_18 AC 42 ms
5,272 KB
testcase_19 AC 42 ms
5,272 KB
testcase_20 AC 42 ms
5,272 KB
testcase_21 AC 40 ms
5,272 KB
testcase_22 AC 39 ms
5,272 KB
testcase_23 AC 44 ms
5,272 KB
testcase_24 AC 43 ms
5,272 KB
testcase_25 AC 44 ms
5,272 KB
testcase_26 AC 2 ms
4,348 KB
testcase_27 AC 16 ms
4,348 KB
testcase_28 AC 14 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//g++ 2.cpp -std=c++14 -O2 -I .
#include <bits/stdc++.h>
using namespace std;

#include <atcoder/all>
using namespace atcoder;

using ll = long long;
using ld = long double;

using vi = vector<int>;
using vvi = vector<vi>;
using vll = vector<ll>;
using vvll = vector<vll>;
using vld = vector<ld>;
using vvld = vector<vld>;

#define fi first
#define se second
#define pb push_back
#define pq_big(T) priority_queue<T,vector<T>,less<T>>
#define pq_small(T) priority_queue<T,vector<T>,greater<T>>
#define all(a) a.begin(),a.end()
#define rep(i,start,end) for(ll i=start;i<(ll)(end);i++)
#define per(i,start,end) for(ll i=start;i>=(ll)(end);i--)
#define uniq(a) sort(all(a));a.erase(unique(all(a)),a.end())

constexpr ll mod = 998244353;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  int n;
  cin>>n;

  vector<pair<int,int>> P;
  rep(i,0,n){
    int p;
    cin>>p;
    P.emplace_back(p,i);
  }
  sort(all(P));

  ll ans=1;
  int left=P[0].se,right=P[0].se;
  rep(i,1,n){
    int ind=P[i].se;
    if(left<ind&&ind<right){
      ans*=(right-left+1-i);
      ans%=mod;
    }
    else{
      if(ind<left){
        left=ind;
      }
      else{
        right=ind;
      }
    }
  }

  cout<<ans<<endl;
}
0