結果

問題 No.1186 長方形の敷き詰め
ユーザー NoneNone
提出日時 2021-03-17 04:44:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 207 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 68,188 KB
最終ジャッジ日時 2024-11-14 01:31:27
合計ジャッジ時間 2,625 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,684 KB
testcase_01 AC 36 ms
53,828 KB
testcase_02 AC 53 ms
67,756 KB
testcase_03 AC 36 ms
52,148 KB
testcase_04 AC 36 ms
52,924 KB
testcase_05 AC 37 ms
52,504 KB
testcase_06 AC 36 ms
53,560 KB
testcase_07 AC 36 ms
52,460 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 42 ms
60,340 KB
testcase_12 AC 43 ms
58,920 KB
testcase_13 AC 43 ms
59,040 KB
testcase_14 AC 42 ms
59,732 KB
testcase_15 AC 41 ms
59,276 KB
testcase_16 AC 42 ms
60,188 KB
testcase_17 AC 47 ms
62,344 KB
testcase_18 AC 49 ms
64,548 KB
testcase_19 AC 51 ms
64,896 KB
testcase_20 AC 52 ms
65,812 KB
testcase_21 AC 49 ms
64,308 KB
testcase_22 AC 53 ms
66,984 KB
testcase_23 AC 52 ms
65,284 KB
testcase_24 AC 57 ms
68,188 KB
testcase_25 AC 53 ms
65,256 KB
testcase_26 AC 50 ms
65,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int, input().split())
MOD=998244353
dp=[0]*(M+2)
dp[0]=1

for i in range(M):
    dp[min(i+1,M+1)]+=dp[i]
    dp[min(i+N,M+1)]+=dp[i]
    dp[min(i+1,M+1)]%=MOD
    dp[min(i+N,M+1)]%=MOD


print(dp[M])
0