結果

問題 No.2023 Tiling is Fun
ユーザー jakujaku12jakujaku12
提出日時 2022-07-29 22:02:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,736 KB
実行使用メモリ 75,940 KB
最終ジャッジ日時 2024-07-19 14:48:08
合計ジャッジ時間 2,347 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,408 KB
testcase_01 AC 79 ms
75,588 KB
testcase_02 AC 74 ms
75,900 KB
testcase_03 AC 59 ms
70,272 KB
testcase_04 AC 48 ms
63,288 KB
testcase_05 AC 62 ms
73,100 KB
testcase_06 AC 53 ms
65,972 KB
testcase_07 AC 108 ms
75,796 KB
testcase_08 AC 75 ms
75,684 KB
testcase_09 AC 88 ms
75,940 KB
testcase_10 AC 83 ms
75,648 KB
testcase_11 AC 37 ms
53,072 KB
testcase_12 AC 37 ms
53,656 KB
testcase_13 AC 37 ms
52,616 KB
testcase_14 AC 37 ms
54,020 KB
testcase_15 AC 37 ms
53,484 KB
testcase_16 AC 37 ms
53,340 KB
testcase_17 AC 140 ms
75,656 KB
testcase_18 AC 140 ms
75,648 KB
testcase_19 AC 90 ms
75,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def modpow(a,n,Mod):
    res=1
    while n>0:
        if n & 1:
            res=res * a %Mod
        a=a*a%Mod
        n>>=1
    return res

def modinv(a,Mod):
    return modpow(a,Mod-2,Mod)

a,b=map(int,input().split())
res=1
A=(a-1+b-1)
B=min(a-1,b-1)
for i in range(B):
    res*=A-i
    res*=modinv(i+1,998244353)
    res%=998244353
print(res)
0