結果

問題 No.2615 ペアの作り方
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-01-27 20:32:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 562 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 103,724 KB
最終ジャッジ日時 2024-09-28 09:48:45
合計ジャッジ時間 5,585 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,424 KB
testcase_01 AC 47 ms
55,552 KB
testcase_02 AC 47 ms
55,040 KB
testcase_03 AC 48 ms
55,552 KB
testcase_04 AC 48 ms
55,552 KB
testcase_05 AC 48 ms
55,424 KB
testcase_06 AC 48 ms
55,168 KB
testcase_07 AC 47 ms
55,808 KB
testcase_08 AC 47 ms
55,552 KB
testcase_09 AC 52 ms
63,872 KB
testcase_10 AC 54 ms
63,616 KB
testcase_11 AC 54 ms
64,256 KB
testcase_12 AC 54 ms
64,256 KB
testcase_13 AC 54 ms
64,256 KB
testcase_14 AC 54 ms
64,000 KB
testcase_15 AC 555 ms
103,140 KB
testcase_16 AC 562 ms
103,404 KB
testcase_17 AC 519 ms
103,296 KB
testcase_18 AC 530 ms
103,212 KB
testcase_19 AC 557 ms
103,724 KB
testcase_20 AC 550 ms
103,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
X = list(map(int,input().split()))
Y = list(map(int,input().split()))
mod = 998244353

Z = [(x,1) for x in X] + [(y,0) for y in Y]
Z.sort()
n = sum(flg for x,flg in Z[:N])
m = N - n

ans = 1
for i in range(1,n+1):
    ans = (ans*i)%mod

for i in range(1,m+1):
    ans = (ans*i)%mod
print(ans)
0