結果

問題 No.1186 長方形の敷き詰め
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-09-02 00:24:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 480 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 49,912 KB
最終ジャッジ日時 2024-05-01 01:14:07
合計ジャッジ時間 3,206 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
18,524 KB
testcase_01 AC 39 ms
18,496 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 39 ms
18,492 KB
testcase_04 AC 38 ms
18,496 KB
testcase_05 AC 38 ms
18,472 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 40 ms
18,560 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 29 ms
10,880 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 40 ms
18,552 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 29 ms
10,880 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 29 ms
10,880 KB
testcase_22 AC 480 ms
49,912 KB
testcase_23 AC 281 ms
35,852 KB
testcase_24 AC 307 ms
29,284 KB
testcase_25 AC 170 ms
20,928 KB
testcase_26 AC 170 ms
18,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
if N > M:
    print(1)
else:
    # N<M
    if N == 1:
        print(1)
        exit()
    mod = 998244353
    dp = [0]*(10**6+10)
    dp[0] = 1
    for i in range(1, M+1):
        if i >= N:
            dp[i] = (dp[i-1] + dp[i-N]) % mod
        else:
            dp[i] = dp[i-1]
    print(dp[M])
0