結果

問題 No.2615 ペアの作り方
ユーザー なえしらなえしら
提出日時 2024-05-21 22:52:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 911 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 141,216 KB
最終ジャッジ日時 2024-05-21 22:52:35
合計ジャッジ時間 5,143 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
74,132 KB
testcase_01 AC 88 ms
75,168 KB
testcase_02 AC 90 ms
74,808 KB
testcase_03 AC 87 ms
74,080 KB
testcase_04 AC 88 ms
74,776 KB
testcase_05 AC 87 ms
74,484 KB
testcase_06 AC 88 ms
75,468 KB
testcase_07 AC 87 ms
75,512 KB
testcase_08 AC 88 ms
74,712 KB
testcase_09 AC 89 ms
77,412 KB
testcase_10 AC 89 ms
76,072 KB
testcase_11 AC 117 ms
76,448 KB
testcase_12 AC 89 ms
76,104 KB
testcase_13 AC 89 ms
76,068 KB
testcase_14 AC 91 ms
77,060 KB
testcase_15 AC 220 ms
141,216 KB
testcase_16 AC 214 ms
140,972 KB
testcase_17 AC 214 ms
139,820 KB
testcase_18 AC 240 ms
140,684 KB
testcase_19 AC 214 ms
141,124 KB
testcase_20 AC 216 ms
140,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class ModularCombinatorics:
  def __init__(self, mod=998244353, max_=10**6):
    self._mod = mod
    self._fact = [1]*(max_+1)
    self._finv = [1]*(max_+1)
    for i in range(2, max_+1):
      self._fact[i] = i * self._fact[i-1] % mod
    self._finv[max_] = pow(self._fact[max_], -1, mod)
    for i in range(max_, 2, -1):
      self._finv[i-1] = i * self._finv[i] % mod
  def perm(self, n, r=None):
    if r is None: return self._fact[n]
    if n < r: return 0
    return self._fact[n] * self._finv[n-r] % self._mod
  def comb(self, n, r):
    return self.perm(n, r) * self._finv[r] % self._mod
  def crep(self, n, r):
    return self.comb(n+r-1, r)

MOD = 998244353
MC = ModularCombinatorics(MOD)

N = int(input())
X = set(map(int, input().split()))
Y = set(map(int, input().split()))
Z = sorted(X|Y)

cnt = 0
for z in Z[:N]:
  if z in X:
    cnt += 1

a, b = MC.perm(cnt), MC.perm(N - cnt)
print(a * b % MOD)
0