結果

問題 No.2875 What is My Rank?
ユーザー rlangevinrlangevin
提出日時 2024-09-06 22:59:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 726 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 80,364 KB
最終ジャッジ日時 2024-09-06 22:59:13
合計ジャッジ時間 9,533 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,008 KB
testcase_01 AC 33 ms
53,416 KB
testcase_02 AC 33 ms
52,140 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 32 ms
52,672 KB
testcase_06 WA -
testcase_07 AC 33 ms
52,560 KB
testcase_08 AC 34 ms
53,940 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 453 ms
79,088 KB
testcase_34 AC 274 ms
79,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
L, R = [0] * N, [0] * N
inv = 1
mod = 998244353
for i in range(N):
    L[i], R[i] = map(int, input().split())
    inv *= pow(R[i] - L[i] + 1, mod - 2, mod)
    inv %= mod
    
def Gauss(n):
    return n * (n + 1) // 2

ans = 1
for i in range(1, N):
    l0, r0 = L[0], R[0]
    l1, r1 = L[i], R[i]
    temp = 0
    if r0 < l1:
        ans += 1
    elif l0 > r1:
        pass
    else:
        if l0 < l1:
            l0 = l1
        if r0 > r1:
            temp += (r1 - r0) * (r1 - l1 + 1)
            r0 = r1
        temp += Gauss(r1 - l0) - Gauss(r1 - r0 - 1)
        ans += temp * pow((r0 - l0 + 1) * (r1 - l1 + 1), mod - 2, mod)
        ans %= mod

print(ans % mod)
0