結果

問題 No.2791 Beginner Contest
ユーザー tassei903tassei903
提出日時 2024-06-21 22:14:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 736 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 60,128 KB
最終ジャッジ日時 2024-06-21 22:14:59
合計ジャッジ時間 2,623 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,560 KB
testcase_01 AC 38 ms
52,752 KB
testcase_02 AC 43 ms
58,480 KB
testcase_03 AC 40 ms
52,436 KB
testcase_04 AC 37 ms
52,496 KB
testcase_05 AC 37 ms
53,540 KB
testcase_06 AC 42 ms
60,052 KB
testcase_07 AC 41 ms
58,184 KB
testcase_08 AC 49 ms
58,312 KB
testcase_09 AC 42 ms
58,540 KB
testcase_10 AC 43 ms
60,128 KB
testcase_11 AC 41 ms
58,836 KB
testcase_12 AC 43 ms
59,848 KB
testcase_13 AC 41 ms
59,272 KB
testcase_14 AC 41 ms
59,408 KB
testcase_15 AC 40 ms
58,964 KB
testcase_16 AC 37 ms
52,256 KB
testcase_17 AC 37 ms
53,216 KB
testcase_18 AC 41 ms
58,588 KB
testcase_19 AC 42 ms
58,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n, k = na()
mod = 998244353
def find_coefficient(N, k, MOD=998244353):
    # Initialize the coefficients array
    a = [0] * (N + 1)
    a[0] = 1  # a_0 = 1

    # Compute the coefficients using the recurrence relation
    for n in range(1, N + 1):
        a[n] = a[n - 1]
        if n >= k:
            a[n] = (a[n] + a[n - k]) % MOD

    return a[N]

print(find_coefficient(n, k))
0