結果

問題 No.2023 Tiling is Fun
ユーザー flippergoflippergo
提出日時 2024-10-19 21:46:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 63,016 KB
最終ジャッジ日時 2024-10-19 21:46:52
合計ジャッジ時間 2,484 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,312 KB
testcase_01 AC 42 ms
61,932 KB
testcase_02 AC 41 ms
59,624 KB
testcase_03 AC 40 ms
59,472 KB
testcase_04 AC 41 ms
59,048 KB
testcase_05 AC 42 ms
60,624 KB
testcase_06 AC 41 ms
59,700 KB
testcase_07 AC 43 ms
61,736 KB
testcase_08 AC 41 ms
60,000 KB
testcase_09 AC 43 ms
62,120 KB
testcase_10 AC 43 ms
60,428 KB
testcase_11 AC 34 ms
52,788 KB
testcase_12 AC 35 ms
53,036 KB
testcase_13 AC 35 ms
52,648 KB
testcase_14 AC 41 ms
60,228 KB
testcase_15 AC 42 ms
60,028 KB
testcase_16 AC 43 ms
60,468 KB
testcase_17 AC 45 ms
62,328 KB
testcase_18 AC 64 ms
63,016 KB
testcase_19 AC 43 ms
60,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
a,b = map(int,input().split())
A = [1]*(a+b+1)
for i in range(2,a+b+1):
    A[i] = (A[i-1]*i)%MOD
B = [1]*(a+b+1)
B[a+b] = pow(A[a+b],MOD-2,MOD)
for i in range(a+b-1,0,-1):
    B[i] = (B[i+1]*(i+1))%MOD
print((A[a+b-2]*B[a-1]*B[b-1])%MOD)
0