結果

問題 No.1186 長方形の敷き詰め
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-08-02 17:37:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 975 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 1,293 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-07-19 02:03:46
合計ジャッジ時間 9,903 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 949 ms
75,520 KB
testcase_03 AC 35 ms
51,584 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 36 ms
51,584 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 34 ms
51,584 KB
testcase_08 AC 35 ms
51,840 KB
testcase_09 AC 33 ms
51,840 KB
testcase_10 AC 33 ms
51,712 KB
testcase_11 AC 42 ms
59,648 KB
testcase_12 AC 46 ms
59,392 KB
testcase_13 AC 41 ms
59,520 KB
testcase_14 AC 46 ms
59,684 KB
testcase_15 AC 43 ms
59,392 KB
testcase_16 AC 44 ms
59,520 KB
testcase_17 AC 331 ms
64,768 KB
testcase_18 AC 635 ms
69,760 KB
testcase_19 AC 758 ms
71,936 KB
testcase_20 AC 842 ms
72,960 KB
testcase_21 AC 595 ms
68,864 KB
testcase_22 AC 975 ms
76,800 KB
testcase_23 AC 548 ms
68,352 KB
testcase_24 AC 834 ms
73,172 KB
testcase_25 AC 544 ms
68,220 KB
testcase_26 AC 595 ms
69,376 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], 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