結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー kakel-sankakel-san
提出日時 2024-01-28 21:40:09
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 213 ms / 3,000 ms
コード長 1,529 bytes
コンパイル時間 13,630 ms
コンパイル使用メモリ 169,064 KB
実行使用メモリ 195,476 KB
最終ジャッジ日時 2024-09-28 09:57:19
合計ジャッジ時間 12,230 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
30,336 KB
testcase_01 AC 49 ms
30,336 KB
testcase_02 AC 50 ms
30,336 KB
testcase_03 AC 55 ms
31,360 KB
testcase_04 AC 49 ms
30,080 KB
testcase_05 AC 50 ms
30,208 KB
testcase_06 AC 50 ms
30,192 KB
testcase_07 AC 50 ms
30,208 KB
testcase_08 AC 50 ms
30,192 KB
testcase_09 AC 54 ms
31,360 KB
testcase_10 AC 51 ms
30,336 KB
testcase_11 AC 52 ms
31,232 KB
testcase_12 AC 54 ms
30,976 KB
testcase_13 AC 50 ms
30,208 KB
testcase_14 AC 201 ms
60,288 KB
testcase_15 AC 213 ms
61,952 KB
testcase_16 AC 207 ms
61,952 KB
testcase_17 AC 208 ms
61,952 KB
testcase_18 AC 207 ms
61,824 KB
testcase_19 AC 207 ms
61,824 KB
testcase_20 AC 54 ms
31,488 KB
testcase_21 AC 56 ms
32,128 KB
testcase_22 AC 56 ms
31,744 KB
testcase_23 AC 63 ms
33,536 KB
testcase_24 AC 61 ms
32,384 KB
testcase_25 AC 60 ms
32,128 KB
testcase_26 AC 54 ms
31,360 KB
testcase_27 AC 116 ms
44,032 KB
testcase_28 AC 81 ms
36,480 KB
testcase_29 AC 66 ms
33,020 KB
testcase_30 AC 88 ms
37,760 KB
testcase_31 AC 97 ms
195,476 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (115 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 c = NList;
        var (n, k) = (c[0], c[1]);
        c = NList;
        var num = new List<int>();
        var clist = new List<int>();
        var dlist = new List<int>();
        var bitmax = 1;
        for (var i = 0; i < 9; ++i) if (c[i] > 0)
        {
            num.Add(i + 1);
            clist.Add(c[i]);
            if (dlist.Count == 0) dlist.Add(1);
            else dlist.Add(dlist[^1] * (clist[^2] + 1));
            bitmax *= c[i] + 1;
        }
        var dp = new long[bitmax][];
        for (var i = 0; i < dp.Length; ++i) dp[i] = new long[k];
        dp[0][0] = 1;
        for (var b = 0; b < bitmax; ++b)
        {
            for (var i = 0; i < clist.Count; ++i)
            {
                var ci = b / dlist[i] % (clist[i] + 1);
                if (ci == clist[i]) continue;
                for (var j = 0; j < k; ++j)
                {
                    var next = (j * 10 + num[i]) % k;
                    dp[b + dlist[i]][next] += dp[b][j];
                }
            }
        }
        WriteLine(dp[^1][0]);
    }
}
0