結果

問題 No.2615 ペアの作り方
ユーザー detteiuudetteiuu
提出日時 2024-09-09 23:14:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 98,416 KB
最終ジャッジ日時 2024-09-09 23:14:49
合計ジャッジ時間 3,244 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,176 KB
testcase_01 AC 34 ms
53,560 KB
testcase_02 AC 33 ms
52,832 KB
testcase_03 AC 32 ms
52,824 KB
testcase_04 AC 33 ms
52,208 KB
testcase_05 AC 34 ms
53,692 KB
testcase_06 AC 33 ms
52,064 KB
testcase_07 AC 32 ms
53,160 KB
testcase_08 AC 33 ms
52,900 KB
testcase_09 AC 37 ms
59,748 KB
testcase_10 AC 38 ms
58,716 KB
testcase_11 AC 40 ms
59,876 KB
testcase_12 AC 42 ms
58,728 KB
testcase_13 AC 36 ms
58,488 KB
testcase_14 AC 37 ms
59,512 KB
testcase_15 AC 118 ms
97,856 KB
testcase_16 AC 118 ms
97,632 KB
testcase_17 AC 117 ms
98,416 KB
testcase_18 AC 115 ms
98,156 KB
testcase_19 AC 119 ms
98,112 KB
testcase_20 AC 113 ms
97,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = sorted(list(map(int, input().split())))
Y = sorted(list(map(int, input().split())), reverse=True)

MOD = 998244353
left = 0
for i in range(N):
    if X[i] > Y[i]:
        break
    left += 1
right = N-left

P = [0, 1]
for i in range(2, N+1):
    P.append(P[-1]*i%MOD)

if left == 0:
    print(P[right])
elif right == 0:
    print(P[left])
else:
    print(P[left]*P[right]%MOD)
0