結果

問題 No.2023 Tiling is Fun
ユーザー 👑 KazunKazun
提出日時 2022-07-29 21:50:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 59,072 KB
最終ジャッジ日時 2024-07-19 14:22:20
合計ジャッジ時間 1,985 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,768 KB
testcase_01 AC 39 ms
58,056 KB
testcase_02 AC 39 ms
58,136 KB
testcase_03 AC 39 ms
58,676 KB
testcase_04 AC 40 ms
57,304 KB
testcase_05 AC 39 ms
57,824 KB
testcase_06 AC 39 ms
57,584 KB
testcase_07 AC 41 ms
57,320 KB
testcase_08 AC 41 ms
58,440 KB
testcase_09 AC 40 ms
58,404 KB
testcase_10 AC 40 ms
58,284 KB
testcase_11 AC 34 ms
53,048 KB
testcase_12 AC 33 ms
53,488 KB
testcase_13 AC 34 ms
52,908 KB
testcase_14 AC 33 ms
53,084 KB
testcase_15 AC 38 ms
59,072 KB
testcase_16 AC 33 ms
52,244 KB
testcase_17 AC 38 ms
58,376 KB
testcase_18 AC 38 ms
57,784 KB
testcase_19 AC 37 ms
58,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def nCr(n,r):
    a=b=1

    while r:
        a*=n; a%=Mod; n-=1
        b*=r; b%=Mod; r-=1
    return (a*pow(b,Mod-2,Mod))%Mod

a,b=map(int,input().split())
Mod=998244353
print(nCr(a+b-2,a-1))
0