結果

問題 No.1186 長方形の敷き詰め
ユーザー mlihua09mlihua09
提出日時 2020-08-22 14:07:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 268 bytes
コンパイル時間 571 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 122,624 KB
最終ジャッジ日時 2024-10-15 08:23:12
合計ジャッジ時間 4,497 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 109 ms
122,248 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 42 ms
58,240 KB
testcase_12 AC 44 ms
59,264 KB
testcase_13 AC 41 ms
58,112 KB
testcase_14 AC 41 ms
59,008 KB
testcase_15 AC 42 ms
58,624 KB
testcase_16 AC 41 ms
58,240 KB
testcase_17 AC 63 ms
89,216 KB
testcase_18 AC 87 ms
122,240 KB
testcase_19 AC 91 ms
122,472 KB
testcase_20 AC 93 ms
122,624 KB
testcase_21 AC 77 ms
115,200 KB
testcase_22 AC 594 ms
122,240 KB
testcase_23 AC 78 ms
114,304 KB
testcase_24 AC 96 ms
122,240 KB
testcase_25 AC 75 ms
109,184 KB
testcase_26 AC 78 ms
115,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


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