結果

問題 No.1186 長方形の敷き詰め
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-09-06 17:58:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 700 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 91,648 KB
最終ジャッジ日時 2024-05-06 21:19:23
合計ジャッジ時間 7,475 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 700 ms
91,264 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 40 ms
51,584 KB
testcase_06 AC 39 ms
51,584 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 40 ms
52,352 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 49 ms
62,336 KB
testcase_12 AC 60 ms
69,632 KB
testcase_13 AC 50 ms
61,184 KB
testcase_14 AC 57 ms
67,968 KB
testcase_15 AC 50 ms
62,080 KB
testcase_16 AC 49 ms
62,208 KB
testcase_17 AC 256 ms
80,896 KB
testcase_18 AC 466 ms
85,708 KB
testcase_19 AC 547 ms
87,808 KB
testcase_20 AC 602 ms
89,856 KB
testcase_21 AC 441 ms
84,992 KB
testcase_22 AC 695 ms
91,648 KB
testcase_23 AC 416 ms
84,224 KB
testcase_24 AC 607 ms
89,344 KB
testcase_25 AC 401 ms
84,096 KB
testcase_26 AC 445 ms
85,120 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())
if n == 1:
    exit(print(1))
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], -1, mod)
ans = 0
for i in range(m // n + 1):
    ans += comb(m - i * (n - 1), i)
    ans %= mod
print(ans % mod)
0