結果

問題 No.1186 長方形の敷き詰め
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-09-06 17:58:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 631 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 91,736 KB
最終ジャッジ日時 2024-11-29 07:25:16
合計ジャッジ時間 6,672 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,344 KB
testcase_01 AC 32 ms
52,500 KB
testcase_02 AC 631 ms
91,604 KB
testcase_03 AC 35 ms
52,496 KB
testcase_04 AC 34 ms
52,404 KB
testcase_05 AC 36 ms
52,432 KB
testcase_06 AC 34 ms
52,688 KB
testcase_07 AC 33 ms
52,668 KB
testcase_08 AC 33 ms
53,288 KB
testcase_09 AC 31 ms
52,988 KB
testcase_10 AC 32 ms
52,400 KB
testcase_11 AC 41 ms
63,032 KB
testcase_12 AC 47 ms
69,992 KB
testcase_13 AC 43 ms
63,112 KB
testcase_14 AC 44 ms
68,316 KB
testcase_15 AC 42 ms
63,892 KB
testcase_16 AC 41 ms
62,168 KB
testcase_17 AC 221 ms
80,468 KB
testcase_18 AC 415 ms
85,888 KB
testcase_19 AC 484 ms
87,792 KB
testcase_20 AC 523 ms
89,460 KB
testcase_21 AC 383 ms
84,984 KB
testcase_22 AC 625 ms
91,736 KB
testcase_23 AC 348 ms
84,336 KB
testcase_24 AC 537 ms
89,204 KB
testcase_25 AC 353 ms
84,172 KB
testcase_26 AC 392 ms
85,104 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