結果

問題 No.2875 What is My Rank?
ユーザー mkawa2mkawa2
提出日時 2024-09-07 18:44:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,218 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 77,388 KB
最終ジャッジ日時 2024-09-07 18:44:36
合計ジャッジ時間 8,848 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,904 KB
testcase_01 AC 38 ms
53,472 KB
testcase_02 AC 38 ms
52,620 KB
testcase_03 AC 38 ms
53,308 KB
testcase_04 AC 38 ms
52,752 KB
testcase_05 AC 38 ms
52,680 KB
testcase_06 WA -
testcase_07 AC 38 ms
52,680 KB
testcase_08 AC 38 ms
53,752 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 316 ms
76,340 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

def sumlr(l,r):
    return (l+r)*(r-l+1)//2

n=II()
ans=1
l,r=LI()
for _ in range(n-1):
    s,t=LI()
    if t<=l:
        c=0
    elif s>r:
        c=1
    elif l>=s:
        if r>=t:
            c=sumlr(1,t-l)
        else:
            c=sumlr(t-r,t-l)
    else:
        if r>=t:
            c=sumlr(s-l,t-l)
        else:
            c=(r-l+1)*(t-s+1)-sumlr(1,r-s+1)
    # print(c)
    ans+=c*pow((r-l+1)*(t-s+1),md-2,md)%md
    ans%=md

print(ans)
0