結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー kakel-sankakel-san
提出日時 2024-07-14 23:17:23
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 67 ms / 3,000 ms
コード長 1,971 bytes
コンパイル時間 8,272 ms
コンパイル使用メモリ 168,316 KB
実行使用メモリ 185,116 KB
最終ジャッジ日時 2024-07-14 23:17:36
合計ジャッジ時間 11,946 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
27,264 KB
testcase_01 AC 48 ms
27,136 KB
testcase_02 AC 52 ms
27,628 KB
testcase_03 AC 49 ms
27,136 KB
testcase_04 AC 48 ms
27,264 KB
testcase_05 AC 49 ms
27,004 KB
testcase_06 AC 49 ms
27,264 KB
testcase_07 AC 47 ms
27,264 KB
testcase_08 AC 48 ms
27,008 KB
testcase_09 AC 49 ms
27,008 KB
testcase_10 AC 48 ms
27,264 KB
testcase_11 AC 46 ms
26,992 KB
testcase_12 AC 48 ms
27,136 KB
testcase_13 AC 48 ms
26,880 KB
testcase_14 AC 48 ms
27,008 KB
testcase_15 AC 49 ms
27,136 KB
testcase_16 AC 47 ms
27,264 KB
testcase_17 AC 48 ms
27,264 KB
testcase_18 AC 49 ms
27,264 KB
testcase_19 AC 50 ms
27,136 KB
testcase_20 AC 51 ms
27,008 KB
testcase_21 AC 51 ms
27,136 KB
testcase_22 AC 49 ms
26,876 KB
testcase_23 AC 51 ms
28,160 KB
testcase_24 AC 50 ms
27,392 KB
testcase_25 AC 49 ms
27,008 KB
testcase_26 AC 49 ms
27,136 KB
testcase_27 AC 48 ms
27,392 KB
testcase_28 AC 49 ms
27,136 KB
testcase_29 AC 49 ms
27,008 KB
testcase_30 AC 53 ms
28,288 KB
testcase_31 AC 52 ms
28,288 KB
testcase_32 AC 54 ms
28,012 KB
testcase_33 AC 57 ms
28,928 KB
testcase_34 AC 64 ms
29,824 KB
testcase_35 AC 65 ms
29,696 KB
testcase_36 AC 65 ms
29,420 KB
testcase_37 AC 67 ms
29,696 KB
testcase_38 AC 65 ms
185,116 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 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();
    static int[] LList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => int.Parse(ReadLine())).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = ReadLine();
        var mod = 1_000_000_007;
        var dp = new long[18];
        var m2 = new int[] { 0, 0, 1, 0, 2, 0, 1, 0, 2, 0 };
        var m5 = new int[] { 0, 0, 0, 0, 0, 1, 0, 0, 0, 0 };
        dp[0] = 1;
        for (var i = 1; i < n[0] - '0'; ++i) ++dp[m5[i] * 3 + m2[i]];
        ++dp[9 + m5[n[0] - '0'] * 3 + m2[n[0] - '0']];
        for (var i = 1; i < n.Length; ++i)
        {
            var ndp = new long[18];
            ndp[0] = 1;
            for (var j = 0; j < 9; ++j) for (var k = 1; k <= 9; ++k)
            {
                var n5 = Math.Min(2, j / 3 + m5[k]);
                var n2 = Math.Min(2, j % 3 + m2[k]);
                ndp[n5 * 3 + n2] = (ndp[n5 * 3 + n2] + dp[j]) % mod;
            }
            for (var j = 0; j < 9; ++j) if (dp[j + 9] == 1) for (var k = 1; k < n[i] - '0'; ++k)
            {
                var n5 = Math.Min(2, j / 3 + m5[k]);
                var n2 = Math.Min(2, j % 3 + m2[k]);
                ndp[n5 * 3 + n2] = (ndp[n5 * 3 + n2] + dp[j + 9]) % mod;
            }
            for (var j = 0; j < 9; ++j) if (dp[j + 9] == 1 && n[i] > '0')
            {
                var n5 = Math.Min(2, j / 3 + m5[n[i] - '0']);
                var n2 = Math.Min(2, j % 3 + m2[n[i] - '0']);
                ndp[9 + n5 * 3 + n2] = 1;
            }
            dp = ndp;
        }
        WriteLine((dp[8] + dp[17]) % mod);
    }
}
0