結果

問題 No.2023 Tiling is Fun
ユーザー H20H20
提出日時 2022-07-29 23:05:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 539 bytes
コンパイル時間 587 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 123,648 KB
最終ジャッジ日時 2024-07-19 16:26:42
合計ジャッジ時間 3,147 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
122,880 KB
testcase_01 AC 107 ms
123,136 KB
testcase_02 AC 105 ms
123,136 KB
testcase_03 AC 105 ms
123,008 KB
testcase_04 AC 118 ms
123,392 KB
testcase_05 AC 112 ms
123,392 KB
testcase_06 AC 108 ms
123,136 KB
testcase_07 AC 109 ms
123,008 KB
testcase_08 AC 105 ms
122,880 KB
testcase_09 AC 108 ms
123,392 KB
testcase_10 AC 109 ms
123,264 KB
testcase_11 AC 102 ms
123,136 KB
testcase_12 AC 105 ms
123,008 KB
testcase_13 AC 102 ms
123,264 KB
testcase_14 AC 101 ms
123,264 KB
testcase_15 AC 103 ms
123,184 KB
testcase_16 AC 104 ms
122,880 KB
testcase_17 AC 109 ms
123,008 KB
testcase_18 AC 112 ms
123,648 KB
testcase_19 AC 116 ms
123,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#コンビネーション
def cmb(n, r, mod):
    if ( r<0 or r>n ):
        return 0
    r = min(r, n-r)
    return g1[n] * g2[r] * g2[n-r] % mod

mod = 998244353
N = 3*10**5
g1 = [1, 1] # 元テーブル
g2 = [1, 1] #逆元テーブル
inverse = [0, 1] #逆元テーブル計算用テーブル

for i in range( 2, N + 1 ):
    g1.append( ( g1[-1] * i ) % mod )
    inverse.append( ( -inverse[mod % i] * (mod//i) ) % mod )
    g2.append( (g2[-1] * inverse[-1]) % mod )

A,B = map(int, input().split())
print(g1[A+B-2]*g2[A-1]*g2[B-1]%mod)
0