結果

問題 No.2318 Phys Bone Maker
ユーザー kakel-sankakel-san
提出日時 2023-08-03 23:02:15
言語 C#
(.NET 8.0.203)
結果
MLE  
実行時間 -
コード長 3,462 bytes
コンパイル時間 9,611 ms
コンパイル使用メモリ 166,388 KB
実行使用メモリ 595,776 KB
最終ジャッジ日時 2024-10-13 20:09:37
合計ジャッジ時間 28,416 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
30,720 KB
testcase_01 AC 56 ms
30,716 KB
testcase_02 MLE -
testcase_03 AC 184 ms
31,104 KB
testcase_04 AC 94 ms
31,232 KB
testcase_05 AC 83 ms
31,100 KB
testcase_06 AC 80 ms
31,104 KB
testcase_07 AC 64 ms
31,232 KB
testcase_08 AC 89 ms
31,232 KB
testcase_09 AC 75 ms
31,104 KB
testcase_10 AC 101 ms
31,104 KB
testcase_11 AC 108 ms
30,976 KB
testcase_12 AC 146 ms
31,360 KB
testcase_13 AC 136 ms
32,896 KB
testcase_14 AC 87 ms
30,976 KB
testcase_15 AC 84 ms
31,104 KB
testcase_16 AC 75 ms
30,976 KB
testcase_17 AC 89 ms
31,100 KB
testcase_18 AC 134 ms
31,232 KB
testcase_19 AC 70 ms
30,976 KB
testcase_20 AC 81 ms
31,100 KB
testcase_21 AC 76 ms
31,104 KB
testcase_22 AC 72 ms
31,104 KB
testcase_23 AC 72 ms
30,976 KB
testcase_24 AC 93 ms
31,104 KB
testcase_25 AC 96 ms
31,100 KB
testcase_26 AC 92 ms
31,104 KB
testcase_27 AC 78 ms
31,104 KB
testcase_28 AC 72 ms
30,976 KB
testcase_29 AC 71 ms
31,104 KB
testcase_30 AC 73 ms
31,104 KB
testcase_31 AC 112 ms
31,104 KB
testcase_32 AC 87 ms
31,232 KB
testcase_33 AC 57 ms
30,592 KB
testcase_34 AC 104 ms
31,872 KB
testcase_35 AC 292 ms
86,784 KB
testcase_36 AC 891 ms
296,552 KB
testcase_37 AC 855 ms
300,292 KB
testcase_38 AC 981 ms
303,772 KB
testcase_39 AC 1,303 ms
439,476 KB
testcase_40 AC 1,286 ms
441,116 KB
testcase_41 AC 1,505 ms
495,140 KB
testcase_42 AC 1,539 ms
500,320 KB
testcase_43 AC 160 ms
33,020 KB
testcase_44 AC 488 ms
84,152 KB
testcase_45 AC 449 ms
79,664 KB
testcase_46 AC 1,651 ms
507,784 KB
testcase_47 AC 89 ms
186,560 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (86 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
{
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = long.Parse(ReadLine());
        var plist = PList(n);
        var map = new List<long>[plist.Count];
        for (var i = 0; i < map.Length; ++i) map[i] = PList(plist[i]);
        var rev = new Dictionary<long, int>();
        for (var i = 0; i < plist.Count; ++i) rev[plist[i]] = i;

        var dic = PDiv(n);
        var primes = new List<long>(dic.Select(kv => kv.Key));
        primes.Sort();
        var pcntmap = new int[plist.Count][];
        for (var i = 0; i < pcntmap.Length; ++i)
        {
            pcntmap[i] = new int[primes.Count];
            for (var j = 0; j < pcntmap[i].Length; ++j)
            {
                var tmp = plist[i];
                while (tmp % primes[j] == 0)
                {
                    ++pcntmap[i][j];
                    tmp /= primes[j];
                }
            }
        }

        var mmap = new int[plist.Count][];
        for (var i = 0; i < mmap.Length; ++i)
        {
            mmap[i] = new int[plist.Count];
            foreach (var r in map[map.Length - 1 - i])
            {
                if (r == 1) continue;
                var next = rev[plist[i] * r];
                mmap[i][next] = 1;
                for (var q = 0; q < primes.Count; ++q)
                {
                    if (pcntmap[i][q] == pcntmap[next][q]) mmap[i][next] *= (pcntmap[i][q] + 1);
                }
            }
        }

        var dp = new long[plist.Count][];
        for (var i = 0; i < dp.Length; ++i) dp[i] = new long[plist.Count];
        dp[0][0] = 1;
        var mod = 998_244_353;
        for (var m = 0; m + 1 < dp.Length; ++m) for (var i = 0; i + 1 < dp[m].Length; ++i)
        {
            if (dp[m][i] == 0) continue;
            foreach (var r in map[map.Length - 1 - i])
            {
                if (r == 1) continue;
                var next = rev[plist[i] * r];
                var add = dp[m][i];
                dp[m + 1][next] = (dp[m + 1][next] + dp[m][i] * mmap[i][next] % mod) % mod;
            }
        }
        var ans = 0L;
        for (var i = 1; i < dp.Length; ++i) ans = (ans + dp[i][dp[i].Length - 1]) % mod;
        WriteLine(ans);
    }
    static List<long> PList(long n)
    {
        var list = new List<long>();
        var rev = new List<long>();
        for (var i = 1L; i * i <= n; ++i)
        {
            if (n % i == 0)
            {
                list.Add(i);
                if (i * i < n) rev.Add(n / i);
            }
        }
        rev.Reverse();
        list.AddRange(rev);
        return list;
    }
    static Dictionary<long, int> PDiv(long n)
    {
        var dic = new Dictionary<long, int>();
        var tmp = n;
        while (tmp % 2 == 0)
        {
            tmp /= 2;
            if (dic.ContainsKey(2)) ++dic[2];
            else dic.Add(2, 1);
        }
        for (var p = 3L; p * p <= n; p += 2)
        {
            while (tmp % p == 0)
            {
                tmp /= p;
                if (dic.ContainsKey(p)) ++dic[p];
                else dic.Add(p, 1);
            }
            if (tmp == 1) break;
        }
        if (tmp > 1) dic.Add(tmp, 1);
        return dic;
    }
}
0