結果

問題 No.2875 What is My Rank?
ユーザー karinohitokarinohito
提出日時 2024-09-06 22:42:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 1,126 bytes
コンパイル時間 2,132 ms
コンパイル使用メモリ 207,220 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-06 22:43:03
合計ジャッジ時間 6,667 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 196 ms
6,944 KB
testcase_10 AC 196 ms
6,944 KB
testcase_11 AC 196 ms
6,944 KB
testcase_12 AC 68 ms
6,940 KB
testcase_13 AC 77 ms
6,940 KB
testcase_14 AC 22 ms
6,940 KB
testcase_15 AC 175 ms
6,940 KB
testcase_16 AC 139 ms
6,940 KB
testcase_17 AC 89 ms
6,940 KB
testcase_18 AC 167 ms
6,940 KB
testcase_19 AC 147 ms
6,944 KB
testcase_20 AC 38 ms
6,940 KB
testcase_21 AC 42 ms
6,940 KB
testcase_22 AC 83 ms
6,940 KB
testcase_23 AC 160 ms
6,940 KB
testcase_24 AC 178 ms
6,944 KB
testcase_25 AC 78 ms
6,944 KB
testcase_26 AC 31 ms
6,944 KB
testcase_27 AC 68 ms
6,944 KB
testcase_28 AC 65 ms
6,944 KB
testcase_29 AC 87 ms
6,940 KB
testcase_30 AC 89 ms
6,944 KB
testcase_31 AC 18 ms
6,940 KB
testcase_32 AC 136 ms
6,940 KB
testcase_33 AC 206 ms
6,940 KB
testcase_34 AC 191 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/modint>
using namespace atcoder;
using mint=modint998244353;
using namespace std;
using ll=long long;


int main() {
    ll N;
    cin>>N;
    vector<ll> L(N),R(N);
    mint an=0;
    for(int i=0;i<N;i++){
        cin>>L[i]>>R[i];
        if(i!=0){
            bool rv=0;
            if(R[i]<R[0]){
                rv=1;
                swap(R[i],R[0]);
                swap(L[i],L[0]);
            }
            ll sm=min(R[i],R[0])-max(L[i],L[0])+1;
            sm=max(0ll,sm);
            mint res=0;
            res+=mint(max(0ll,min(L[i],R[0]+1)-L[0]))*(R[i]-L[i]+1);
            ll lf=max(L[i],L[0]);
            ll ri=min(R[i],R[0]);
            if(ri>=lf){
                res+=mint(ri-lf+1)*R[i];
                res-=ri*(ri+1)/2;
                res+=lf*(lf-1)/2;
            }
            
            if(rv){
                swap(R[i],R[0]);
                swap(L[i],L[0]);
                res=mint(R[i]-L[i]+1)*mint(R[0]-L[0]+1)-res-sm;
            }
            an+=res/mint(R[i]-L[i]+1);
        }
    }
    an/=mint(R[0]-L[0]+1);
    an+=1;
    cout<<an.val()<<endl;
}
0