結果

問題 No.2902 ZERO!!
ユーザー kakel-sankakel-san
提出日時 2024-12-08 13:18:15
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 2,222 bytes
コンパイル時間 10,882 ms
コンパイル使用メモリ 167,756 KB
実行使用メモリ 184,580 KB
最終ジャッジ日時 2024-12-08 13:18:34
合計ジャッジ時間 15,501 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
29,432 KB
testcase_01 AC 51 ms
29,420 KB
testcase_02 AC 316 ms
62,316 KB
testcase_03 AC 50 ms
29,312 KB
testcase_04 AC 125 ms
50,816 KB
testcase_05 AC 206 ms
57,984 KB
testcase_06 AC 313 ms
61,976 KB
testcase_07 AC 142 ms
56,064 KB
testcase_08 AC 292 ms
61,348 KB
testcase_09 AC 289 ms
61,312 KB
testcase_10 AC 230 ms
59,348 KB
testcase_11 AC 203 ms
58,448 KB
testcase_12 AC 80 ms
36,096 KB
testcase_13 AC 292 ms
61,440 KB
testcase_14 AC 236 ms
59,728 KB
testcase_15 AC 279 ms
60,488 KB
testcase_16 AC 184 ms
57,728 KB
testcase_17 AC 287 ms
61,108 KB
testcase_18 AC 260 ms
60,536 KB
testcase_19 AC 252 ms
60,012 KB
testcase_20 AC 251 ms
59,008 KB
testcase_21 AC 242 ms
59,728 KB
testcase_22 AC 160 ms
56,704 KB
testcase_23 AC 186 ms
57,856 KB
testcase_24 AC 51 ms
29,424 KB
testcase_25 AC 53 ms
29,312 KB
testcase_26 AC 52 ms
29,184 KB
testcase_27 AC 51 ms
29,440 KB
testcase_28 AC 51 ms
29,440 KB
testcase_29 AC 54 ms
29,436 KB
testcase_30 AC 53 ms
29,312 KB
testcase_31 AC 53 ms
29,420 KB
testcase_32 AC 53 ms
29,428 KB
testcase_33 AC 51 ms
29,312 KB
testcase_34 AC 52 ms
29,440 KB
testcase_35 AC 52 ms
29,312 KB
testcase_36 AC 51 ms
29,404 KB
testcase_37 AC 51 ms
29,420 KB
testcase_38 AC 50 ms
29,440 KB
testcase_39 AC 50 ms
29,304 KB
testcase_40 AC 53 ms
29,440 KB
testcase_41 AC 51 ms
29,312 KB
testcase_42 AC 52 ms
29,568 KB
testcase_43 AC 53 ms
184,580 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (97 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 string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var dlist = GetMinPDivList(n);
        var primes = new List<int>();
        var pcount = new int[n + 1];
        for (var i = 2; i <= n; ++i) if (dlist[i] == i) primes.Add(i);
        for (var i = 2; i <= n; ++i)
        {
            foreach (var p in PDiv(i, dlist)) ++pcount[p];
        }
        var ans = 0L;
        var mod = 998_244_353;
        for (var e = 1; e <= pcount[2]; ++e)
        {
            var all = 1L;
            var rm = 1L;
            for (var ppos = 0; ppos < primes.Count; ++ppos)
            {
                if (pcount[primes[ppos]] / e == 0) break;
                all = all * (pcount[primes[ppos]] / e + 1) % mod;
                rm = rm * (pcount[primes[ppos]] / (e + 1) + 1) % mod;
            }
            ans = (ans + (all - rm + mod) % mod * e % mod) % mod;
        }
        WriteLine(ans);
    }
    static int[] GetMinPDivList(int max)
    {
        var minPDivList = new int[max + 1];
        for (var i = 0; i <= max; ++i) minPDivList[i] = i;

        for (var i = 2; i * i <= max; ++i) if (minPDivList[i] == i)
        {
            for (var j = i * i; j <= max; j += i) if (minPDivList[j] == j)
            {
                minPDivList[j] = i;
            }
        }
        return minPDivList;
    }
    static List<int> PDiv(int n, int[] minPDivList)
    {
        var p = minPDivList[n];
        if (n == p)
        {
            var dic = new List<int>();
            dic.Add(p);
            return dic;
        }
        else
        {
            var dic = PDiv(n / p, minPDivList);
            dic.Add(p);
            return dic;
        }
    }
}
0