結果

問題 No.2875 What is My Rank?
ユーザー nikoro256nikoro256
提出日時 2024-09-06 23:26:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,017 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 107,964 KB
最終ジャッジ日時 2024-09-06 23:26:24
合計ジャッジ時間 11,986 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,088 KB
testcase_01 AC 40 ms
53,412 KB
testcase_02 AC 38 ms
53,328 KB
testcase_03 AC 38 ms
53,972 KB
testcase_04 WA -
testcase_05 AC 38 ms
52,588 KB
testcase_06 AC 38 ms
52,960 KB
testcase_07 AC 39 ms
52,720 KB
testcase_08 AC 38 ms
53,724 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 272 ms
105,716 KB
testcase_34 AC 271 ms
106,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def extgcd(a, b):
    if b:
        d, y, x = extgcd(b, a % b)
        y -= (a // b) * x
        return d, x, y
    return a, 1, 0

#以下modinv
def mod_inv(a, m):
    g, x, y = extgcd(a, m)

    if g != 1:
        raise Exception()

    if x < 0:
        x += m

    return x

N=int(input())
lis=[]
for _ in range(N):
    lis.append(list(map(int,input().split())))
ans=0
p=998244353
inv2=mod_inv(2,p)
for i in range(1,N):
    if lis[i][1] < lis[0][0]:
        ans+=1
    elif lis[0][1] < lis[i][0]:
        continue
    else:
        l,r=max(lis[0][0],lis[i][0]),min(lis[i][1],lis[0][1])
        a=lis[0][1]-lis[0][0]+1
        b=lis[i][1]-lis[i][0]+1
        big=r-l+1
        ainv=mod_inv(a,p)
        binv=mod_inv(b,p)
        ans_d=ainv*binv*(1+big)*big*inv2%p
        if lis[i][0]<lis[0][0]:
            ans_d+=(-lis[i][0]+lis[0][0])*binv
            ans_d%=p
        if lis[i][1]<lis[0][1]:
            ans_d+=(-lis[i][1]+lis[0][1])*ainv
            ans_d%=p
        ans+=ans_d
        ans%=p
print((N-ans)%p)
0