結果

問題 No.2023 Tiling is Fun
ユーザー lloyzlloyz
提出日時 2022-07-29 23:30:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 63,232 KB
最終ジャッジ日時 2024-07-19 17:04:12
合計ジャッジ時間 1,814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,328 KB
testcase_01 AC 50 ms
61,568 KB
testcase_02 AC 44 ms
59,776 KB
testcase_03 AC 43 ms
59,904 KB
testcase_04 AC 42 ms
58,288 KB
testcase_05 AC 44 ms
59,648 KB
testcase_06 AC 44 ms
60,032 KB
testcase_07 AC 47 ms
61,748 KB
testcase_08 AC 48 ms
60,672 KB
testcase_09 AC 50 ms
61,568 KB
testcase_10 AC 52 ms
61,312 KB
testcase_11 AC 39 ms
51,712 KB
testcase_12 AC 42 ms
51,840 KB
testcase_13 AC 42 ms
52,096 KB
testcase_14 AC 47 ms
60,672 KB
testcase_15 AC 46 ms
60,800 KB
testcase_16 AC 47 ms
60,544 KB
testcase_17 AC 51 ms
63,232 KB
testcase_18 AC 50 ms
63,104 KB
testcase_19 AC 47 ms
61,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())
mod = 998244353

fact = [1] * (a + b)
inv = [1] * (a + b)
finv = [1] * (a + b)
for i in range(2, a + b):
    fact[i] = fact[i - 1] * i % mod
    inv[i] = mod - inv[mod % i] * (mod // i) % mod
    finv[i] = finv[i - 1] * inv[i] % mod
def comb(x, y):
    return fact[x] * finv[y] % mod * finv[x - y] % mod

print(comb(a + b - 2, a - 1))
0