結果

問題 No.2615 ペアの作り方
ユーザー timitimi
提出日時 2024-01-26 21:34:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 561 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 128,044 KB
最終ジャッジ日時 2024-09-28 07:44:50
合計ジャッジ時間 5,106 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
65,940 KB
testcase_01 AC 46 ms
66,008 KB
testcase_02 AC 45 ms
65,728 KB
testcase_03 AC 45 ms
66,448 KB
testcase_04 AC 44 ms
66,548 KB
testcase_05 AC 43 ms
65,776 KB
testcase_06 AC 44 ms
66,484 KB
testcase_07 AC 47 ms
66,996 KB
testcase_08 AC 46 ms
65,496 KB
testcase_09 AC 50 ms
68,220 KB
testcase_10 AC 49 ms
67,380 KB
testcase_11 AC 51 ms
68,392 KB
testcase_12 AC 51 ms
68,020 KB
testcase_13 AC 50 ms
67,800 KB
testcase_14 AC 49 ms
67,556 KB
testcase_15 AC 560 ms
127,692 KB
testcase_16 AC 561 ms
128,036 KB
testcase_17 AC 549 ms
127,060 KB
testcase_18 AC 557 ms
127,516 KB
testcase_19 AC 561 ms
127,164 KB
testcase_20 AC 550 ms
128,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
X=list(map(int, input().split()))
Y=list(map(int, input().split()))
Z=[]
for i in range(N):
  Z.append((X[i],1,i))
  Z.append((Y[i],2,i))
Z=sorted(Z)
x,y=0,0
for _ ,a,i in Z[:N]:
  if a==1:
    x+=1
  else:
    y+=1

D=[1]
mod=998244353
for i in range(1,10**5+10):
  D.append(D[-1]*i)
  D[-1]%=mod 
ans=D[x]*D[y]%mod 
print(ans)
0