結果

問題 No.1186 長方形の敷き詰め
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-08-22 13:30:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 351 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 68,428 KB
最終ジャッジ日時 2024-10-15 07:45:36
合計ジャッジ時間 2,219 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,976 KB
testcase_01 AC 39 ms
52,488 KB
testcase_02 AC 39 ms
51,628 KB
testcase_03 AC 39 ms
52,288 KB
testcase_04 AC 39 ms
52,016 KB
testcase_05 AC 43 ms
52,356 KB
testcase_06 AC 39 ms
52,016 KB
testcase_07 AC 38 ms
52,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 39 ms
52,752 KB
testcase_12 AC 39 ms
53,540 KB
testcase_13 AC 39 ms
52,272 KB
testcase_14 AC 38 ms
52,316 KB
testcase_15 AC 38 ms
52,048 KB
testcase_16 AC 42 ms
58,128 KB
testcase_17 AC 39 ms
53,100 KB
testcase_18 AC 39 ms
52,384 KB
testcase_19 AC 39 ms
52,572 KB
testcase_20 AC 39 ms
53,404 KB
testcase_21 AC 39 ms
53,436 KB
testcase_22 AC 55 ms
65,796 KB
testcase_23 AC 51 ms
64,156 KB
testcase_24 AC 56 ms
66,240 KB
testcase_25 AC 52 ms
64,176 KB
testcase_26 AC 49 ms
64,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

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

"""

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

if N > M:
    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