結果

問題 No.2875 What is My Rank?
ユーザー 蜜蜂蜜蜂
提出日時 2024-09-06 22:45:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 1,808 bytes
コンパイル時間 5,161 ms
コンパイル使用メモリ 268,076 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-06 22:46:09
合計ジャッジ時間 7,865 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 81 ms
6,940 KB
testcase_10 AC 76 ms
6,940 KB
testcase_11 AC 71 ms
6,944 KB
testcase_12 AC 34 ms
6,944 KB
testcase_13 AC 35 ms
6,940 KB
testcase_14 AC 9 ms
6,940 KB
testcase_15 AC 51 ms
6,944 KB
testcase_16 AC 48 ms
6,940 KB
testcase_17 AC 36 ms
6,940 KB
testcase_18 AC 83 ms
6,940 KB
testcase_19 AC 53 ms
6,944 KB
testcase_20 AC 16 ms
6,940 KB
testcase_21 AC 15 ms
6,940 KB
testcase_22 AC 39 ms
6,940 KB
testcase_23 AC 47 ms
6,940 KB
testcase_24 AC 66 ms
6,944 KB
testcase_25 AC 32 ms
6,940 KB
testcase_26 AC 11 ms
6,940 KB
testcase_27 AC 25 ms
6,940 KB
testcase_28 AC 32 ms
6,940 KB
testcase_29 AC 43 ms
6,944 KB
testcase_30 AC 38 ms
6,940 KB
testcase_31 AC 6 ms
6,944 KB
testcase_32 AC 41 ms
6,940 KB
testcase_33 AC 48 ms
6,940 KB
testcase_34 AC 44 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/tree_policy.hpp>
#include<ext/pb_ds/tag_and_trait.hpp>
using namespace __gnu_pbds;

#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>;
using vst = vector<string>;
using vvst = vector<vst>;
 
#define fi first
#define se second
#define pb push_back
#define eb emplace_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())

using mint = modint998244353;

random_device seed;
mt19937_64 randint(seed());

ll grr(ll mi, ll ma) { // [mi, ma)
    return mi + randint() % (ma - mi);
}

mint sub(ll l,ll r,ll a,ll b){
  // l <= i <= r について max(b - max(a - 1, i), 0) を足し
  // 最後に (r - l + 1) * (b - a + 1) で割る
  // i < a => b - a + 1
  // a <= i <= b => b - i
  // b < i => 0

  mint res=0;
  res+=(b-a+1)*max(0LL,a-l);
  if(b<=l){
    return (mint)0;
  }
  if(r<a){
    return (mint)1;
  }

  ll p=min(b-a,b-l),q=max(0LL,b-r);
  res+=(p+q)*(p-q+1)/2;

  res/=(r-l+1);
  res/=(b-a+1);
  return res;
}

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

  int n;cin>>n;
  ll l,r;cin>>l>>r;
  mint ans=0;

  rep(i,0,n-1){
    ll a,b;cin>>a>>b;
    ans+=sub(l,r,a,b);
  }
  ans++;

  cout<<ans.val()<<endl;
}
0