結果

問題 No.2875 What is My Rank?
ユーザー 寝癖寝癖
提出日時 2024-08-28 23:47:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 412 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 97,536 KB
最終ジャッジ日時 2024-08-28 23:47:49
合計ジャッジ時間 10,645 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,912 KB
testcase_01 AC 35 ms
52,500 KB
testcase_02 AC 35 ms
52,592 KB
testcase_03 AC 36 ms
52,132 KB
testcase_04 AC 36 ms
52,628 KB
testcase_05 AC 35 ms
52,780 KB
testcase_06 AC 35 ms
53,128 KB
testcase_07 AC 34 ms
52,724 KB
testcase_08 AC 36 ms
53,264 KB
testcase_09 AC 383 ms
97,536 KB
testcase_10 AC 389 ms
97,404 KB
testcase_11 AC 344 ms
97,400 KB
testcase_12 AC 209 ms
83,936 KB
testcase_13 AC 221 ms
84,844 KB
testcase_14 AC 116 ms
78,704 KB
testcase_15 AC 299 ms
95,132 KB
testcase_16 AC 256 ms
91,832 KB
testcase_17 AC 220 ms
86,428 KB
testcase_18 AC 390 ms
94,016 KB
testcase_19 AC 304 ms
92,092 KB
testcase_20 AC 144 ms
80,628 KB
testcase_21 AC 141 ms
80,920 KB
testcase_22 AC 231 ms
85,612 KB
testcase_23 AC 262 ms
94,240 KB
testcase_24 AC 355 ms
95,652 KB
testcase_25 AC 201 ms
84,808 KB
testcase_26 AC 121 ms
79,008 KB
testcase_27 AC 180 ms
84,156 KB
testcase_28 AC 201 ms
83,532 KB
testcase_29 AC 239 ms
85,880 KB
testcase_30 AC 252 ms
85,904 KB
testcase_31 AC 98 ms
77,136 KB
testcase_32 AC 239 ms
91,108 KB
testcase_33 AC 412 ms
96,920 KB
testcase_34 AC 233 ms
96,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
I = [list(map(int, input().split())) for _ in range(N)]
mod = 998244353
l0, r0 = I[0]
ans = 0
for i in range(1, N):
    li, ri = I[i]
    L, R = min(max(li, l0), r0+1), min(ri, r0)
    ans += max(0, L-l0)
    if L <= R:
        ans += max(0, (2*ri-L-R)*(R-L+1)//2)*pow(ri-li+1, mod-2, mod)
    ans %= mod
ans = (1+ans*pow(r0-l0+1, mod-2, mod))%mod
print(ans)
0