結果

問題 No.2211 Frequency Table of GCD
ユーザー kakel-sankakel-san
提出日時 2023-10-24 22:37:12
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 1,195 ms / 2,000 ms
コード長 1,484 bytes
コンパイル時間 10,096 ms
コンパイル使用メモリ 167,832 KB
実行使用メモリ 240,412 KB
最終ジャッジ日時 2024-09-24 17:45:06
合計ジャッジ時間 25,810 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
31,104 KB
testcase_01 AC 57 ms
31,104 KB
testcase_02 AC 59 ms
30,976 KB
testcase_03 AC 96 ms
38,016 KB
testcase_04 AC 376 ms
66,796 KB
testcase_05 AC 588 ms
78,708 KB
testcase_06 AC 337 ms
64,628 KB
testcase_07 AC 564 ms
78,052 KB
testcase_08 AC 123 ms
56,192 KB
testcase_09 AC 107 ms
48,512 KB
testcase_10 AC 195 ms
69,340 KB
testcase_11 AC 156 ms
62,976 KB
testcase_12 AC 209 ms
69,528 KB
testcase_13 AC 326 ms
64,256 KB
testcase_14 AC 324 ms
64,000 KB
testcase_15 AC 225 ms
54,144 KB
testcase_16 AC 292 ms
65,480 KB
testcase_17 AC 532 ms
77,596 KB
testcase_18 AC 811 ms
83,904 KB
testcase_19 AC 808 ms
83,896 KB
testcase_20 AC 821 ms
83,900 KB
testcase_21 AC 808 ms
83,904 KB
testcase_22 AC 811 ms
83,904 KB
testcase_23 AC 116 ms
36,096 KB
testcase_24 AC 1,195 ms
83,480 KB
testcase_25 AC 177 ms
69,708 KB
testcase_26 AC 57 ms
30,848 KB
testcase_27 AC 794 ms
84,028 KB
testcase_28 AC 1,189 ms
240,412 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();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m) = (c[0], c[1]);
        var a = NList;
        var pcount = new int[m + 1];
        foreach (var ai in a) foreach (var p in PList(ai)) ++pcount[p];
        var ans = new long[m + 1];
        var mod = 998_244_353;
        for (var i = m; i > 0; --i)
        {
            var sub = 1L;
            for (var j = 0; j < pcount[i]; ++j) sub = (sub << 1) % mod;
            --sub;
            for (var j = i * 2; j < ans.Length; j += i)
            {
                sub = (sub + mod - ans[j]) % mod;
            }
            ans[i] = sub;
        }
        WriteLine(string.Join("\n", ans.Skip(1)));
    }
    static List<int> PList(int n)
    {
        var ans = new List<int>();
        var rev = new List<int>();
        for (var i = 1; i * i <= n; ++i)
        {
            if (n % i == 0)
            {
                ans.Add(i);
                if (i * i < n) rev.Add(n / i);
            }
        }
        rev.Reverse();
        return ans.Concat(rev).ToList();
    }
}
0