結果

問題 No.2336 Do you like typical problems?
ユーザー ニックネームニックネーム
提出日時 2023-06-02 23:24:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 712 bytes
コンパイル時間 662 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 130,356 KB
最終ジャッジ日時 2024-06-09 01:30:57
合計ジャッジ時間 5,746 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,256 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 63 ms
11,648 KB
testcase_09 AC 62 ms
11,776 KB
testcase_10 AC 63 ms
11,776 KB
testcase_11 AC 62 ms
11,520 KB
testcase_12 AC 62 ms
11,520 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

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