結果

問題 No.1186 長方形の敷き詰め
ユーザー yansi819yansi819
提出日時 2024-05-06 18:55:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 235 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 66,624 KB
最終ジャッジ日時 2024-11-29 04:15:29
合計ジャッジ時間 2,351 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,672 KB
testcase_01 AC 38 ms
52,632 KB
testcase_02 AC 44 ms
65,888 KB
testcase_03 AC 35 ms
52,064 KB
testcase_04 AC 34 ms
52,548 KB
testcase_05 AC 34 ms
52,800 KB
testcase_06 AC 33 ms
52,144 KB
testcase_07 AC 32 ms
53,256 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 36 ms
58,252 KB
testcase_12 AC 38 ms
58,652 KB
testcase_13 AC 35 ms
57,692 KB
testcase_14 AC 36 ms
57,976 KB
testcase_15 AC 39 ms
58,648 KB
testcase_16 AC 40 ms
58,004 KB
testcase_17 AC 43 ms
60,936 KB
testcase_18 AC 42 ms
63,268 KB
testcase_19 AC 44 ms
64,804 KB
testcase_20 AC 46 ms
64,512 KB
testcase_21 AC 41 ms
62,508 KB
testcase_22 AC 45 ms
66,044 KB
testcase_23 AC 41 ms
63,216 KB
testcase_24 AC 45 ms
66,560 KB
testcase_25 AC 42 ms
63,772 KB
testcase_26 AC 39 ms
63,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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