結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,224 KB
testcase_01 AC 38 ms
52,944 KB
testcase_02 AC 38 ms
52,868 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 38 ms
52,624 KB
testcase_06 WA -
testcase_07 AC 38 ms
53,616 KB
testcase_08 AC 38 ms
52,536 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 489 ms
79,236 KB
testcase_34 AC 296 ms
79,292 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:
            temp += (l1 - l0) * (r1 - l1 + 1)
            l0 = l1
        if r0 > r1:
            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