結果

問題 No.2846 Birthday Cake
ユーザー tobisatistobisatis
提出日時 2024-08-23 22:58:32
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 2,282 bytes
コンパイル時間 8,187 ms
コンパイル使用メモリ 167,312 KB
実行使用メモリ 192,212 KB
最終ジャッジ日時 2024-08-23 22:58:45
合計ジャッジ時間 12,615 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
30,720 KB
testcase_01 AC 57 ms
31,360 KB
testcase_02 AC 100 ms
34,304 KB
testcase_03 AC 53 ms
29,824 KB
testcase_04 AC 56 ms
30,080 KB
testcase_05 AC 103 ms
34,304 KB
testcase_06 AC 112 ms
34,560 KB
testcase_07 AC 112 ms
34,688 KB
testcase_08 AC 114 ms
34,688 KB
testcase_09 AC 123 ms
34,560 KB
testcase_10 AC 124 ms
34,400 KB
testcase_11 AC 125 ms
34,560 KB
testcase_12 AC 97 ms
34,168 KB
testcase_13 AC 108 ms
34,276 KB
testcase_14 AC 77 ms
33,664 KB
testcase_15 AC 91 ms
34,304 KB
testcase_16 AC 100 ms
34,304 KB
testcase_17 AC 122 ms
34,304 KB
testcase_18 AC 130 ms
34,808 KB
testcase_19 AC 61 ms
32,000 KB
testcase_20 AC 70 ms
31,608 KB
testcase_21 AC 55 ms
30,072 KB
testcase_22 AC 79 ms
33,024 KB
testcase_23 AC 73 ms
32,384 KB
testcase_24 AC 115 ms
34,560 KB
testcase_25 AC 53 ms
30,080 KB
testcase_26 AC 75 ms
32,896 KB
testcase_27 AC 86 ms
33,792 KB
testcase_28 AC 53 ms
29,688 KB
testcase_29 AC 92 ms
34,176 KB
testcase_30 AC 56 ms
30,080 KB
testcase_31 AC 70 ms
32,128 KB
testcase_32 AC 105 ms
34,304 KB
testcase_33 AC 122 ms
34,304 KB
testcase_34 AC 94 ms
34,176 KB
testcase_35 AC 98 ms
34,040 KB
testcase_36 AC 109 ms
192,212 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (99 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

namespace AtCoder;

#nullable enable

using System.Numerics;

static class Extensions
{
    public static T[] Repeat<T>(this int time, Func<T> F) => Enumerable.Range(0, time).Select(_ => F()).ToArray();
}

class AtCoder
{
    object? Solve()
    {
        var k = Int();
        var n = Int();
        var banned = new bool[25];
        banned[13] = banned[17] = banned[19] = banned[23] = true;
        var m = 55440;
        var dz = new int[n + 1].AsSpan();
        for (var i = 1; i <= n; i++) if (!banned[i]) dz[i] = m / i;
        var dp = new long[m + 1];
        dp[0] = 1;
        for (var lp = 0; lp < k; lp++)
        {
            var dps = dp.AsSpan();
            var ep = new long[m + 1];
            var eps = ep.AsSpan();
            for (var i = 0; i <= m; i++)
            {
                for (var j = 1; j <= n; j++)
                {
                    if (banned[j]) continue;
                    var next = i + dz[j];
                    if (next <= m) eps[next] += dps[i];
                }
            }
            dp = ep;
        }
        var ans = dp[m];
        if (banned[k]) ans++;
        return ans;
    }

    public static void Main() => new AtCoder().Run();
    public void Run()
    {
        var res = Solve();
        if (res != null)
        {
            if (res is bool yes) res = yes ? "Yes" : "No";
            sw.WriteLine(res);
        }
        sw.Flush();
    }

    string[] input = Array.Empty<string>();
    int iter = 0;
    readonly StreamWriter sw = new(Console.OpenStandardOutput()) { AutoFlush = false };

    string String()
    {
        while (iter >= input.Length) (input, iter) = (Console.ReadLine()!.Split(' '), 0);
        return input[iter++];
    }
    T Input<T>() where T : IParsable<T> => T.Parse(String(), null);
    int Int() => Input<int>();
    void Out(object? x, string? separator = null)
    {
        separator ??= Environment.NewLine;
        if (x is System.Collections.IEnumerable obj and not string)
        {
            var firstLine = true;
            foreach (var item in obj)
            {
                if (!firstLine) sw.Write(separator);
                firstLine = false;
                sw.Write(item);
            }
        }
        else sw.Write(x);
        sw.WriteLine();
    }
}
0