結果

問題 No.2023 Tiling is Fun
ユーザー tktk_snsntktk_snsn
提出日時 2022-07-29 22:01:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,368 KB
最終ジャッジ日時 2024-07-19 14:44:35
合計ジャッジ時間 4,863 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
26,240 KB
testcase_01 AC 181 ms
26,368 KB
testcase_02 AC 186 ms
26,112 KB
testcase_03 AC 180 ms
26,112 KB
testcase_04 AC 186 ms
26,240 KB
testcase_05 AC 197 ms
26,368 KB
testcase_06 AC 184 ms
26,112 KB
testcase_07 AC 188 ms
26,112 KB
testcase_08 AC 214 ms
26,240 KB
testcase_09 AC 183 ms
26,112 KB
testcase_10 AC 183 ms
26,368 KB
testcase_11 AC 187 ms
26,240 KB
testcase_12 AC 192 ms
26,112 KB
testcase_13 AC 177 ms
26,112 KB
testcase_14 AC 193 ms
26,112 KB
testcase_15 AC 184 ms
26,112 KB
testcase_16 AC 181 ms
26,240 KB
testcase_17 AC 177 ms
26,112 KB
testcase_18 AC 180 ms
26,112 KB
testcase_19 AC 181 ms
26,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

Fsize = 2 * 10 ** 5 + 100
fact = [1] * (Fsize + Fsize + 5)
for i in range(2, Fsize+1):
    fact[i] = fact[i-1] * i % mod
fact[-Fsize] = pow(fact[Fsize], mod-2, mod)
for i in reversed(range(2, Fsize + 1)):
    fact[-i+1] = fact[-i] * i % mod


def comb(n, k):
    if k < 0 or k > n:
        return 0
    return fact[n] * fact[-k] % mod * fact[-(n-k)] % mod


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

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