結果

問題 No.1186 長方形の敷き詰め
ユーザー mlihua09mlihua09
提出日時 2020-08-22 14:09:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 595 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 122,576 KB
最終ジャッジ日時 2024-10-15 08:25:39
合計ジャッジ時間 3,133 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,988 KB
testcase_01 AC 38 ms
52,244 KB
testcase_02 AC 100 ms
122,248 KB
testcase_03 AC 39 ms
52,492 KB
testcase_04 AC 38 ms
52,356 KB
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 38 ms
52,068 KB
testcase_07 AC 38 ms
53,684 KB
testcase_08 AC 38 ms
52,128 KB
testcase_09 AC 39 ms
52,728 KB
testcase_10 AC 38 ms
52,832 KB
testcase_11 AC 42 ms
60,040 KB
testcase_12 AC 43 ms
59,280 KB
testcase_13 AC 42 ms
58,528 KB
testcase_14 AC 42 ms
60,380 KB
testcase_15 AC 42 ms
58,776 KB
testcase_16 AC 42 ms
60,020 KB
testcase_17 AC 62 ms
90,504 KB
testcase_18 AC 82 ms
122,472 KB
testcase_19 AC 88 ms
122,576 KB
testcase_20 AC 92 ms
122,376 KB
testcase_21 AC 76 ms
115,888 KB
testcase_22 AC 595 ms
122,508 KB
testcase_23 AC 77 ms
114,220 KB
testcase_24 AC 93 ms
122,304 KB
testcase_25 AC 74 ms
109,712 KB
testcase_26 AC 78 ms
115,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())

if N == 1:
    print(1)
    exit()

P = 998244353


ans = 0

f = [1]

for i in range(1, M + 1):
    
    f += [f[-1] * i % P]
    
    
for i in range(M // N + 1):
    
    j = M - i * N
    
    ans += f[i + j] * pow(f[i] * f[j], P - 2, P)
    ans %= P
    
print(ans)
0