結果

問題 No.1186 長方形の敷き詰め
ユーザー vwxyzvwxyz
提出日時 2024-12-19 22:46:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 177 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 66,776 KB
最終ジャッジ日時 2024-12-19 22:46:12
合計ジャッジ時間 2,970 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,304 KB
testcase_01 AC 36 ms
53,236 KB
testcase_02 AC 51 ms
66,776 KB
testcase_03 AC 36 ms
53,256 KB
testcase_04 AC 35 ms
52,264 KB
testcase_05 AC 37 ms
52,084 KB
testcase_06 AC 36 ms
52,552 KB
testcase_07 AC 35 ms
52,828 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 39 ms
59,384 KB
testcase_12 AC 40 ms
59,104 KB
testcase_13 AC 40 ms
58,768 KB
testcase_14 AC 40 ms
58,488 KB
testcase_15 AC 39 ms
59,808 KB
testcase_16 AC 39 ms
58,760 KB
testcase_17 AC 44 ms
61,276 KB
testcase_18 AC 48 ms
64,188 KB
testcase_19 AC 50 ms
65,064 KB
testcase_20 AC 49 ms
65,220 KB
testcase_21 AC 48 ms
63,408 KB
testcase_22 AC 54 ms
66,376 KB
testcase_23 AC 48 ms
62,584 KB
testcase_24 AC 54 ms
65,996 KB
testcase_25 AC 47 ms
63,964 KB
testcase_26 AC 48 ms
63,972 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 N<=m:
        dp[m]+=dp[m-N]
    dp[m]%=mod
ans=dp[M]
print(ans)
0