結果

問題 No.2875 What is My Rank?
ユーザー kotatsugamekotatsugame
提出日時 2024-09-06 23:00:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 583 ms
コンパイル使用メモリ 68,800 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-06 23:02:43
合計ジャッジ時間 3,784 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 108 ms
6,940 KB
testcase_10 AC 108 ms
6,940 KB
testcase_11 AC 108 ms
6,944 KB
testcase_12 AC 37 ms
6,940 KB
testcase_13 AC 42 ms
6,944 KB
testcase_14 AC 12 ms
6,940 KB
testcase_15 AC 97 ms
6,940 KB
testcase_16 AC 78 ms
6,940 KB
testcase_17 AC 49 ms
6,944 KB
testcase_18 AC 90 ms
6,940 KB
testcase_19 AC 80 ms
6,940 KB
testcase_20 AC 22 ms
6,940 KB
testcase_21 AC 24 ms
6,940 KB
testcase_22 AC 46 ms
6,940 KB
testcase_23 AC 88 ms
6,940 KB
testcase_24 AC 99 ms
6,940 KB
testcase_25 AC 43 ms
6,940 KB
testcase_26 AC 18 ms
6,940 KB
testcase_27 AC 38 ms
6,944 KB
testcase_28 AC 36 ms
6,940 KB
testcase_29 AC 47 ms
6,940 KB
testcase_30 AC 49 ms
6,944 KB
testcase_31 AC 10 ms
6,940 KB
testcase_32 AC 75 ms
6,940 KB
testcase_33 AC 109 ms
6,944 KB
testcase_34 AC 107 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cassert>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
int N,L,R;
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>L>>R;L--;
	const int off=1e9;
	R=off-R;
	L=off-L;
	swap(L,R);
	mint ans=1;
	for(int i=1;i<N;i++)
	{
		int l,r;cin>>l>>r;l--;
		r=off-r;
		l=off-l;
		swap(l,r);
		long long now=0;
		{//v+x
			long long lx=max(L,l+1),rx=min(R,r+1);
			if(lx<rx)
			{
				long long v=-l;
				now+=v*(rx-lx);
				now+=rx*(rx-1)/2;
				now-=lx*(lx-1)/2;
			}
		}
		{//r-l
			long long lx=max(L,r+1),rx=R;
			if(lx<rx)now+=(r-l)*(rx-lx);
		}
		ans+=now/mint(r-l)/mint(R-L);
	}
	cout<<ans.val()<<endl;
}
0