結果

問題 No.2336 Do you like typical problems?
ユーザー PNJPNJ
提出日時 2024-06-12 00:00:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,805 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 101,704 KB
最終ジャッジ日時 2024-06-12 00:00:28
合計ジャッジ時間 15,096 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,428 KB
testcase_01 AC 38 ms
52,072 KB
testcase_02 AC 41 ms
51,752 KB
testcase_03 AC 37 ms
53,568 KB
testcase_04 AC 38 ms
52,208 KB
testcase_05 AC 38 ms
52,064 KB
testcase_06 AC 37 ms
52,360 KB
testcase_07 AC 38 ms
53,500 KB
testcase_08 AC 87 ms
76,300 KB
testcase_09 AC 89 ms
76,504 KB
testcase_10 AC 88 ms
76,708 KB
testcase_11 AC 88 ms
76,468 KB
testcase_12 AC 87 ms
76,952 KB
testcase_13 AC 1,805 ms
100,992 KB
testcase_14 AC 1,772 ms
100,560 KB
testcase_15 AC 1,755 ms
101,704 KB
testcase_16 AC 1,793 ms
100,800 KB
testcase_17 AC 1,751 ms
100,800 KB
testcase_18 AC 841 ms
100,124 KB
testcase_19 AC 843 ms
100,216 KB
testcase_20 AC 1,698 ms
100,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
inv_2 = (mod + 1) // 2

N = int(input())
ans = N*(N-1) // 2
S = []
for i in range(N):
  b,c = map(int,input().split())
  le = c - b + 1
  S.append((b,le))
  S.append((c+1,-le))
S.sort()

s = 0
t = 0
p = 0
for a,le in S:
  res = (s*s - t) % mod
  res = res * inv_2 % mod
  res = res * (a - p) % mod
  ans = (ans - res) % mod
  l = pow(abs(le),mod - 2,mod)
  if le > 0:
    s += l
    t += l * l % mod
  else:
    s -= l
    t -= l * l % mod
  s %= mod
  t %= mod
  p = a
ans *= N*(N-1) // 2
ans %= mod
for n in range(1,N-1):
  ans = ans * n % mod
print(ans)
0