結果

問題 No.1409 Simple Math in yukicoder
ユーザー kakel-sankakel-san
提出日時 2024-07-15 23:33:12
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 3,137 bytes
コンパイル時間 10,188 ms
コンパイル使用メモリ 171,308 KB
実行使用メモリ 194,140 KB
最終ジャッジ日時 2024-07-15 23:33:57
合計ジャッジ時間 38,814 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
30,812 KB
testcase_01 AC 62 ms
31,104 KB
testcase_02 AC 60 ms
31,104 KB
testcase_03 AC 60 ms
31,104 KB
testcase_04 AC 60 ms
30,848 KB
testcase_05 AC 69 ms
30,592 KB
testcase_06 AC 71 ms
31,360 KB
testcase_07 AC 70 ms
32,000 KB
testcase_08 AC 85 ms
33,536 KB
testcase_09 AC 75 ms
31,836 KB
testcase_10 AC 82 ms
33,280 KB
testcase_11 AC 86 ms
33,664 KB
testcase_12 AC 81 ms
33,024 KB
testcase_13 AC 69 ms
32,000 KB
testcase_14 AC 67 ms
31,484 KB
testcase_15 AC 70 ms
32,384 KB
testcase_16 AC 70 ms
32,128 KB
testcase_17 AC 93 ms
33,792 KB
testcase_18 AC 73 ms
32,484 KB
testcase_19 AC 80 ms
33,024 KB
testcase_20 AC 74 ms
32,768 KB
testcase_21 AC 73 ms
32,384 KB
testcase_22 AC 81 ms
33,280 KB
testcase_23 AC 68 ms
31,744 KB
testcase_24 AC 65 ms
31,488 KB
testcase_25 AC 81 ms
33,140 KB
testcase_26 AC 87 ms
33,020 KB
testcase_27 AC 102 ms
34,044 KB
testcase_28 AC 95 ms
34,304 KB
testcase_29 AC 98 ms
34,560 KB
testcase_30 AC 98 ms
34,432 KB
testcase_31 AC 95 ms
34,784 KB
testcase_32 AC 98 ms
34,432 KB
testcase_33 AC 95 ms
34,176 KB
testcase_34 AC 96 ms
34,176 KB
testcase_35 AC 107 ms
35,072 KB
testcase_36 AC 96 ms
34,944 KB
testcase_37 AC 132 ms
39,296 KB
testcase_38 AC 129 ms
39,296 KB
testcase_39 AC 142 ms
39,012 KB
testcase_40 AC 132 ms
39,040 KB
testcase_41 AC 130 ms
38,912 KB
testcase_42 AC 143 ms
39,200 KB
testcase_43 AC 135 ms
38,912 KB
testcase_44 AC 133 ms
38,912 KB
testcase_45 AC 132 ms
39,424 KB
testcase_46 AC 132 ms
39,168 KB
testcase_47 AC 128 ms
38,912 KB
testcase_48 AC 129 ms
39,040 KB
testcase_49 AC 132 ms
38,912 KB
testcase_50 AC 131 ms
39,296 KB
testcase_51 AC 140 ms
39,296 KB
testcase_52 AC 131 ms
39,040 KB
testcase_53 AC 131 ms
38,912 KB
testcase_54 AC 133 ms
39,296 KB
testcase_55 AC 128 ms
39,296 KB
testcase_56 AC 128 ms
39,296 KB
testcase_57 AC 137 ms
39,168 KB
testcase_58 AC 138 ms
39,424 KB
testcase_59 AC 148 ms
194,140 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (106 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 r = new Random();
        var t = NN;
        var ans = new int[t][];
        for (var u = 0; u < t; ++u)
        {
            var c = NList;
            var (v, x) = (c[0], c[1]);
            ans[u] = Math(r, v, x);
        }
        WriteLine(string.Join("\n", ans.Select(ai => string.Join(" ", ai))));
    }
    static int[] Math(Random r, int v, int x)
    {
        if (x == 1) return new int[] { 1 };
        if (v == 1)
        {
            var _ans = new int[x];
            for (var i = 0; i < x; ++i) _ans[i] = i + 1;
            return _ans;
        }
        var p = PDiv(v);
        foreach (var kv in PDiv(x)) if (!p.ContainsKey(kv.Key)) p[kv.Key] = kv.Value;
        var b = 0;
        while (true)
        {
            b = r.Next(v * x) + 1;
            var flg = true;
            foreach (var kv in p)
            {
                if (Exp(b, v * x / kv.Key, v * x + 1) == 1)
                {
                    flg = false;
                    break;
                }
            }
            if (flg) break;
        }
        var ans = new int[x];
        for (var i = 0; i < x; ++i)
        {
            ans[i] = (int)Exp(b, i * v, v * x + 1);
        }
        Array.Sort(ans);
        return ans;
    }
    static Dictionary<long, long> PDiv(long n)
    {
        var dic = new Dictionary<long, long>();
        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;
    }
    static long Exp(long n, long p, int mod)
    {
        long _n = n % mod;
        var _p = p;
        var result = 1L;
        if ((_p & 1) == 1) result *= _n;
        while (_p > 0)
        {
            _n = _n * _n % mod;
            _p >>= 1;
            if ((_p & 1) == 1) result = result * _n % mod;
        }
        return result;
    }
    static bool IsPrime(int n)
    {
        if (n == 1) return false;
        if (n == 2) return true;
        if (n % 2 == 0) return false;
        int i = 3;
        while (i * i <= n)
        {
            if (n % i == 0) return false;
            i = i + 2;
        }
        return true;
    }
}
0