結果

問題 No.1011 Infinite Stairs
コンテスト
ユーザー kakel-san
提出日時 2025-11-21 00:29:36
言語 C#
(.NET 8.0.404)
結果
AC  
実行時間 1,107 ms / 2,000 ms
コード長 1,193 bytes
コンパイル時間 8,460 ms
コンパイル使用メモリ 170,828 KB
実行使用メモリ 193,476 KB
最終ジャッジ日時 2025-11-21 00:29:53
合計ジャッジ時間 13,786 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (123 ミリ秒)。
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #
raw source code

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
using System.Globalization;
using System.Runtime.CompilerServices;
using System.Runtime.Intrinsics.X86;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, d, k) = (c[0], c[1], c[2]);
        var dp = new long[k + 2];
        var mod = 1_000_000_007;
        dp[0] = 1;
        for (var t = 0; t < n; ++t)
        {
            var ndp = new long[k + 2];
            for (var i = 0; i < k; ++i)
            {
                ndp[i + 1] = (ndp[i + 1] + dp[i]) % mod;
                var end = Math.Min(k + 1, i + d + 1);
                ndp[end] = (ndp[end] - dp[i] + mod) % mod;
            }
            for (var j = 1; j < ndp.Length; ++j) ndp[j] = (ndp[j] + ndp[j - 1]) % mod;
            dp = ndp;
        }
        WriteLine(dp[k]);
    }
}
0