結果

問題 No.2023 Tiling is Fun
ユーザー nohakai3nohakai3
提出日時 2022-08-09 22:03:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,766 ms / 2,000 ms
コード長 87 bytes
コンパイル時間 1,210 ms
コンパイル使用メモリ 81,680 KB
実行使用メモリ 76,580 KB
最終ジャッジ日時 2023-10-20 07:11:58
合計ジャッジ時間 7,780 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,484 KB
testcase_01 AC 292 ms
74,748 KB
testcase_02 AC 187 ms
74,664 KB
testcase_03 AC 97 ms
74,660 KB
testcase_04 AC 45 ms
61,296 KB
testcase_05 AC 112 ms
74,656 KB
testcase_06 AC 64 ms
74,656 KB
testcase_07 AC 808 ms
75,208 KB
testcase_08 AC 225 ms
74,696 KB
testcase_09 AC 395 ms
74,844 KB
testcase_10 AC 319 ms
74,760 KB
testcase_11 AC 39 ms
53,484 KB
testcase_12 AC 38 ms
53,484 KB
testcase_13 AC 39 ms
53,484 KB
testcase_14 AC 39 ms
53,484 KB
testcase_15 AC 38 ms
53,484 KB
testcase_16 AC 39 ms
53,484 KB
testcase_17 AC 1,763 ms
76,580 KB
testcase_18 AC 1,766 ms
76,580 KB
testcase_19 AC 464 ms
74,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import math
ans=math.comb(a+b-2,a-1)%998244353
print(ans)
0