結果

問題 No.2023 Tiling is Fun
ユーザー H3PO4H3PO4
提出日時 2022-07-29 21:54:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 72,192 KB
最終ジャッジ日時 2024-07-19 14:25:19
合計ジャッジ時間 2,562 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,200 KB
testcase_01 AC 77 ms
63,488 KB
testcase_02 AC 69 ms
62,976 KB
testcase_03 AC 97 ms
66,304 KB
testcase_04 AC 45 ms
60,544 KB
testcase_05 AC 86 ms
65,408 KB
testcase_06 AC 105 ms
67,200 KB
testcase_07 AC 104 ms
66,944 KB
testcase_08 AC 109 ms
67,968 KB
testcase_09 AC 139 ms
70,784 KB
testcase_10 AC 72 ms
63,488 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 AC 35 ms
51,712 KB
testcase_13 AC 35 ms
51,328 KB
testcase_14 AC 36 ms
52,096 KB
testcase_15 AC 135 ms
72,192 KB
testcase_16 AC 35 ms
51,712 KB
testcase_17 AC 136 ms
71,552 KB
testcase_18 AC 140 ms
71,552 KB
testcase_19 AC 144 ms
71,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input().split())
# comb(A+B-2, A-1)
MOD = 998244353
modinv = lambda x, mod=MOD: pow(x, mod - 2, mod)
ans = 1
for i in range(A - 1):
    ans *= (A + B - 2 - i) * modinv(i + 1)
    ans %= MOD
print(ans)
0