結果

問題 No.1186 長方形の敷き詰め
ユーザー ああいいああいい
提出日時 2022-05-20 14:14:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 67,408 KB
最終ジャッジ日時 2024-09-19 22:05:46
合計ジャッジ時間 2,056 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,596 KB
testcase_01 AC 33 ms
52,796 KB
testcase_02 AC 33 ms
52,816 KB
testcase_03 AC 33 ms
52,212 KB
testcase_04 AC 33 ms
53,480 KB
testcase_05 AC 32 ms
52,916 KB
testcase_06 AC 35 ms
52,404 KB
testcase_07 AC 34 ms
52,944 KB
testcase_08 AC 36 ms
52,948 KB
testcase_09 AC 33 ms
52,876 KB
testcase_10 AC 32 ms
52,248 KB
testcase_11 AC 35 ms
52,124 KB
testcase_12 AC 32 ms
52,404 KB
testcase_13 AC 34 ms
52,836 KB
testcase_14 AC 33 ms
52,564 KB
testcase_15 AC 31 ms
52,204 KB
testcase_16 AC 35 ms
59,484 KB
testcase_17 AC 32 ms
53,576 KB
testcase_18 AC 34 ms
52,532 KB
testcase_19 AC 34 ms
52,608 KB
testcase_20 AC 33 ms
52,000 KB
testcase_21 AC 33 ms
53,256 KB
testcase_22 AC 48 ms
66,856 KB
testcase_23 AC 42 ms
62,632 KB
testcase_24 AC 49 ms
67,408 KB
testcase_25 AC 45 ms
63,672 KB
testcase_26 AC 47 ms
64,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import sys
if N > M:
    print(1)
    exit()
if N == 1:
    print(1)
    exit()
P = 998244353
dp = [0] * (M + 1)
dp[0] = 1
for i in range(1,M + 1):
    dp[i] += dp[i-1]
    if i >= N:
        dp[i] += dp[i - N]
    dp[i] %= P
print(dp[-1])
0