結果

問題 No.1186 長方形の敷き詰め
ユーザー vwxyzvwxyz
提出日時 2024-12-19 22:46:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 67,128 KB
最終ジャッジ日時 2024-12-19 22:46:58
合計ジャッジ時間 2,660 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,472 KB
testcase_01 AC 40 ms
52,180 KB
testcase_02 AC 55 ms
67,128 KB
testcase_03 AC 35 ms
53,228 KB
testcase_04 AC 37 ms
51,828 KB
testcase_05 AC 35 ms
52,936 KB
testcase_06 AC 35 ms
53,036 KB
testcase_07 AC 37 ms
51,876 KB
testcase_08 AC 39 ms
52,280 KB
testcase_09 AC 50 ms
66,120 KB
testcase_10 AC 41 ms
59,212 KB
testcase_11 AC 41 ms
59,080 KB
testcase_12 AC 41 ms
58,900 KB
testcase_13 AC 44 ms
58,552 KB
testcase_14 AC 52 ms
58,400 KB
testcase_15 AC 43 ms
59,292 KB
testcase_16 AC 43 ms
59,460 KB
testcase_17 AC 47 ms
60,752 KB
testcase_18 AC 50 ms
63,576 KB
testcase_19 AC 48 ms
64,144 KB
testcase_20 AC 50 ms
65,216 KB
testcase_21 AC 46 ms
63,580 KB
testcase_22 AC 53 ms
66,632 KB
testcase_23 AC 48 ms
63,088 KB
testcase_24 AC 52 ms
65,752 KB
testcase_25 AC 48 ms
63,756 KB
testcase_26 AC 46 ms
63,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
mod=998244353
dp=[0]*(M+1)
dp[0]=1
for m in range(1,M+1):
    dp[m]+=dp[m-1]
    if 1<N and N<=m:
        dp[m]+=dp[m-N]
    dp[m]%=mod
ans=dp[M]
print(ans)
0