結果

問題 No.2303 Frog on Grid
ユーザー rlangevinrlangevin
提出日時 2023-05-12 22:39:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 584 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,088 KB
最終ジャッジ日時 2024-05-06 12:42:55
合計ジャッジ時間 4,013 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
71,424 KB
testcase_01 AC 108 ms
84,096 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n = 505050
fact = [1] * (n + 1)
invfact = [1] * (n + 1)
for i in range(1, n):
    fact[i + 1] = ((i+1) * fact[i]) % mod
invfact[n] = pow(fact[n], mod - 2, mod)
for i in range(n - 1, -1, -1):
    invfact[i] = invfact[i + 1] * (i + 1) % mod

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

H, W = map(int, input().split())
ans = 0
for k1 in range(H + 1):
    for k2 in range(W + 1):
        ans += comb(k1, H - k1) * comb(k2, W - k2) * comb(k1 + k2, k1)
        ans %= mod
        
print(ans)
0