結果

問題 No.2615 ペアの作り方
ユーザー playerplayer
提出日時 2024-01-28 01:59:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 799 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 125,000 KB
最終ジャッジ日時 2024-09-28 09:49:58
合計ジャッジ時間 6,233 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,160 KB
testcase_01 AC 42 ms
53,024 KB
testcase_02 AC 42 ms
52,736 KB
testcase_03 AC 43 ms
54,104 KB
testcase_04 AC 43 ms
52,836 KB
testcase_05 AC 42 ms
52,364 KB
testcase_06 AC 42 ms
52,892 KB
testcase_07 AC 43 ms
52,280 KB
testcase_08 AC 43 ms
52,888 KB
testcase_09 AC 50 ms
59,240 KB
testcase_10 AC 46 ms
59,152 KB
testcase_11 AC 48 ms
59,832 KB
testcase_12 AC 46 ms
59,228 KB
testcase_13 AC 46 ms
59,448 KB
testcase_14 AC 47 ms
59,176 KB
testcase_15 AC 717 ms
125,000 KB
testcase_16 AC 722 ms
124,744 KB
testcase_17 AC 792 ms
124,756 KB
testcase_18 AC 799 ms
124,716 KB
testcase_19 AC 712 ms
124,924 KB
testcase_20 AC 714 ms
124,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
x = list(map(int,input().split()))
y = list(map(int,input().split()))
mod = 998244353 

lis = []
for i in range(n):
    lis.append([x[i],"x"])
    lis.append([y[i],"y"])
    
lis.sort()

cntx,cnty = n,n
for i in range(n):
    if lis[i][1] == "x":
        cntx -= 1
    else:
        cnty -= 1
        
ans = 1
for i in range(n):
    if lis[i][1] == "x":
        ans *= cnty
        cnty -= 1
    else:
        ans *= cntx
        cntx -= 1
    ans %= mod
    
print(ans)
0