結果

問題 No.1186 長方形の敷き詰め
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-08-02 17:32:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 403 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-07-19 01:37:59
合計ジャッジ時間 10,282 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 912 ms
74,880 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 36 ms
51,712 KB
testcase_07 AC 37 ms
51,584 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 47 ms
59,776 KB
testcase_12 AC 51 ms
59,520 KB
testcase_13 AC 46 ms
59,520 KB
testcase_14 AC 52 ms
59,776 KB
testcase_15 AC 47 ms
59,264 KB
testcase_16 AC 48 ms
59,520 KB
testcase_17 AC 325 ms
64,512 KB
testcase_18 AC 613 ms
69,632 KB
testcase_19 AC 723 ms
71,552 KB
testcase_20 AC 803 ms
73,216 KB
testcase_21 AC 575 ms
68,864 KB
testcase_22 AC 923 ms
76,544 KB
testcase_23 AC 522 ms
68,224 KB
testcase_24 AC 804 ms
73,344 KB
testcase_25 AC 514 ms
68,096 KB
testcase_26 AC 575 ms
68,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
def comb(n, r):
    if n < r:return 0
    if n < 0 or r < 0:return 0
    return fa[n] * fi[r] % mod * fi[n - r] % mod
n, m = map(int, input().split())
fa = [1] * (m + 1)
fi = [1] * (m + 1)
for i in range(1, m + 1):
    fa[i] = fa[i - 1] * i % mod
    fi[i] = pow(fa[i], mod - 2, mod)
ans = 0
for i in range(m // n + 1):
    ans += comb(m - i * (n - 1), i)
    ans %= mod
print(ans % mod)
0