結果

問題 No.1186 長方形の敷き詰め
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-08-22 13:31:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 66,648 KB
最終ジャッジ日時 2024-10-15 07:46:34
合計ジャッジ時間 2,209 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,432 KB
testcase_01 AC 38 ms
52,276 KB
testcase_02 AC 39 ms
53,148 KB
testcase_03 AC 38 ms
52,856 KB
testcase_04 AC 38 ms
52,120 KB
testcase_05 AC 38 ms
52,892 KB
testcase_06 AC 38 ms
53,600 KB
testcase_07 AC 38 ms
53,564 KB
testcase_08 AC 39 ms
52,472 KB
testcase_09 AC 41 ms
53,096 KB
testcase_10 AC 39 ms
52,192 KB
testcase_11 AC 39 ms
52,644 KB
testcase_12 AC 39 ms
52,156 KB
testcase_13 AC 38 ms
53,036 KB
testcase_14 AC 38 ms
51,980 KB
testcase_15 AC 38 ms
52,392 KB
testcase_16 AC 43 ms
59,548 KB
testcase_17 AC 38 ms
52,144 KB
testcase_18 AC 38 ms
52,436 KB
testcase_19 AC 38 ms
52,756 KB
testcase_20 AC 38 ms
52,956 KB
testcase_21 AC 39 ms
53,008 KB
testcase_22 AC 54 ms
66,648 KB
testcase_23 AC 51 ms
63,368 KB
testcase_24 AC 55 ms
66,048 KB
testcase_25 AC 52 ms
63,488 KB
testcase_26 AC 50 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

N*Nの範囲だけ、横向きでも行ける

"""

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

if N > M or N == 1:
    print (1)
else:
    dp = [0] * (M+1)
    dp[0] = 1
    mod = 998244353

    for i in range(M):
        dp[i+1] += dp[i]
        dp[i+1] %= mod

        if i+N <= M:
            dp[i+N] += dp[i]
            dp[i+N] %= mod

    print (dp[-1] % mod)
0