結果

問題 No.2336 Do you like typical problems?
ユーザー ニックネームニックネーム
提出日時 2023-06-02 23:24:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 965 ms / 2,000 ms
コード長 712 bytes
コンパイル時間 687 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 247,296 KB
最終ジャッジ日時 2024-06-09 01:31:26
合計ジャッジ時間 9,252 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 95 ms
77,184 KB
testcase_09 AC 104 ms
77,236 KB
testcase_10 AC 105 ms
77,240 KB
testcase_11 AC 95 ms
77,372 KB
testcase_12 AC 93 ms
76,956 KB
testcase_13 AC 932 ms
246,528 KB
testcase_14 AC 965 ms
247,296 KB
testcase_15 AC 947 ms
247,136 KB
testcase_16 AC 907 ms
247,016 KB
testcase_17 AC 944 ms
246,912 KB
testcase_18 AC 440 ms
93,312 KB
testcase_19 AC 432 ms
93,184 KB
testcase_20 AC 899 ms
246,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input()); mod = 998244353
bc = [tuple(map(int,input().split())) for _ in range(n)]
itov = set()
for b,c in bc: itov.add(b); itov.add(c+1)
itov = sorted(itov); m = len(itov)
vtoi = {v:i+1 for i,v in enumerate(itov)}
imos1 = [0]*(m+1); imos2=  [0]*(m+1)
for b,c in bc:
    rev1 = pow(c-b+1,mod-2,mod); rev2 = rev1**2%mod
    imos1[vtoi[b]] += rev1; imos2[vtoi[b]] += rev2
    imos1[vtoi[c+1]] -= rev1; imos2[vtoi[c+1]] -= rev2
for i in range(m):
    imos1[i+1] = sum(imos1[i:i+2])%mod
    imos2[i+1] = sum(imos2[i:i+2])%mod
two = pow(2,mod-2,mod); ans = n*(n-1)//2
for i in range(1,m): ans = (ans-(imos1[i]**2-imos2[i])%mod*two%mod*(itov[i]-itov[i-1]))%mod
for i in range(3,n+1): ans = ans*i%mod
print(ans)
0