結果

問題 No.1331 Moving Penguin
ユーザー kakel-sankakel-san
提出日時 2024-08-22 23:54:35
言語 C#
(.NET 8.0.404)
結果
AC  
実行時間 931 ms / 1,500 ms
コード長 1,288 bytes
コンパイル時間 19,894 ms
コンパイル使用メモリ 169,820 KB
実行使用メモリ 194,548 KB
最終ジャッジ日時 2024-08-22 23:55:28
合計ジャッジ時間 40,721 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
32,256 KB
testcase_01 AC 57 ms
29,952 KB
testcase_02 AC 55 ms
30,336 KB
testcase_03 AC 56 ms
29,948 KB
testcase_04 AC 695 ms
43,136 KB
testcase_05 AC 692 ms
40,960 KB
testcase_06 AC 688 ms
41,088 KB
testcase_07 AC 687 ms
40,960 KB
testcase_08 AC 688 ms
37,760 KB
testcase_09 AC 681 ms
37,760 KB
testcase_10 AC 705 ms
37,888 KB
testcase_11 AC 689 ms
38,144 KB
testcase_12 AC 671 ms
38,016 KB
testcase_13 AC 686 ms
37,888 KB
testcase_14 AC 681 ms
38,016 KB
testcase_15 AC 684 ms
37,884 KB
testcase_16 AC 671 ms
37,888 KB
testcase_17 AC 710 ms
37,760 KB
testcase_18 AC 672 ms
37,888 KB
testcase_19 AC 701 ms
37,888 KB
testcase_20 AC 683 ms
38,016 KB
testcase_21 AC 672 ms
38,144 KB
testcase_22 AC 683 ms
37,888 KB
testcase_23 AC 672 ms
38,016 KB
testcase_24 AC 699 ms
37,856 KB
testcase_25 AC 674 ms
37,756 KB
testcase_26 AC 717 ms
43,008 KB
testcase_27 AC 686 ms
42,868 KB
testcase_28 AC 716 ms
42,872 KB
testcase_29 AC 688 ms
44,416 KB
testcase_30 AC 191 ms
35,200 KB
testcase_31 AC 338 ms
39,328 KB
testcase_32 AC 171 ms
34,560 KB
testcase_33 AC 254 ms
35,808 KB
testcase_34 AC 444 ms
39,296 KB
testcase_35 AC 787 ms
41,344 KB
testcase_36 AC 825 ms
41,056 KB
testcase_37 AC 812 ms
41,472 KB
testcase_38 AC 198 ms
35,200 KB
testcase_39 AC 663 ms
42,488 KB
testcase_40 AC 319 ms
37,376 KB
testcase_41 AC 689 ms
41,344 KB
testcase_42 AC 832 ms
41,076 KB
testcase_43 AC 822 ms
41,216 KB
testcase_44 AC 804 ms
41,344 KB
testcase_45 AC 924 ms
41,076 KB
testcase_46 AC 931 ms
41,472 KB
testcase_47 AC 929 ms
41,084 KB
testcase_48 AC 683 ms
194,548 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 #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        var th = (int)Math.Sqrt(n);
        var mod = 1_000_000_007;
        var dp = new long[n];
        dp[0] = 1;
        var add = new long[th][];
        for (var i = 0; i < add.Length; ++i) add[i] = new long[th];
        for (var i = 0; i + 1 < n; ++i)
        {
            if (a[i] > 1) dp[i + 1] = (dp[i + 1] + dp[i]) % mod;
            if (a[i] >= th)
            {
                for (var j = i + a[i]; j < n; j += a[i]) dp[j] = (dp[j] + dp[i]) % mod;
            }
            else
            {
                add[a[i]][i % a[i]] = (add[a[i]][i % a[i]] + dp[i]) % mod;
            }
            for (var j = 1; j < add.Length; ++j)
            {
                dp[i + 1] = (dp[i + 1] + add[j][(i + 1) % j]) % mod;
            }
        }
        WriteLine(dp[^1]);
    }
}
0