結果

問題 No.1731 Product of Subsequence
ユーザー kakel-sankakel-san
提出日時 2021-11-05 22:24:34
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,606 bytes
コンパイル時間 1,151 ms
コンパイル使用メモリ 113,952 KB
実行使用メモリ 52,372 KB
最終ジャッジ日時 2024-11-06 13:20:52
合計ジャッジ時間 6,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
46,808 KB
testcase_01 AC 34 ms
25,520 KB
testcase_02 AC 33 ms
25,188 KB
testcase_03 AC 34 ms
25,392 KB
testcase_04 AC 34 ms
25,396 KB
testcase_05 AC 35 ms
25,056 KB
testcase_06 AC 35 ms
25,384 KB
testcase_07 AC 34 ms
25,444 KB
testcase_08 AC 47 ms
25,948 KB
testcase_09 WA -
testcase_10 AC 324 ms
45,904 KB
testcase_11 AC 285 ms
50,960 KB
testcase_12 AC 40 ms
25,800 KB
testcase_13 AC 43 ms
25,804 KB
testcase_14 AC 278 ms
51,564 KB
testcase_15 AC 34 ms
25,056 KB
testcase_16 WA -
testcase_17 AC 35 ms
25,056 KB
testcase_18 AC 441 ms
48,344 KB
testcase_19 AC 45 ms
28,112 KB
testcase_20 AC 362 ms
52,372 KB
testcase_21 AC 321 ms
45,776 KB
testcase_22 AC 207 ms
46,176 KB
testcase_23 WA -
testcase_24 AC 47 ms
26,160 KB
testcase_25 AC 44 ms
27,908 KB
testcase_26 AC 83 ms
27,848 KB
testcase_27 AC 105 ms
29,968 KB
testcase_28 AC 169 ms
32,000 KB
testcase_29 AC 88 ms
28,020 KB
testcase_30 AC 262 ms
43,856 KB
testcase_31 AC 207 ms
46,036 KB
testcase_32 WA -
testcase_33 AC 51 ms
25,824 KB
testcase_34 AC 54 ms
25,548 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using static System.Console;
using System.Linq;

class yuki321
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    static void Main()
    {
        var c = NList;
        var (n, k) = ((int)c[0], c[1]);
        var a = NList;

        var gcda = new long[n];
        for (var i = 0; i < n; ++i) gcda[i] = GCD(k, a[i]);

        var key = 1000000007;
        var divs = Divs(k);
        var dic = new Dictionary<long, int>();
        for (var i = 0; i < divs.Count; ++i) dic[divs[i]] = i;
        var dp = new long[divs.Count];
        dp[0] = 1;
        for (var i = 0; i < n; ++i)
        {
            var next = (long[]) dp.Clone();
            for (var j = 0; j < dp.Length; ++j)
            {
                var nj = dic[GCD(gcda[i] * divs[j], k)];
                next[nj] = (next[nj] + dp[j]) % key;
            }
            dp = next;
        }
        WriteLine(dp.Last());
    }
    static long GCD(long a, long b)
    {
        if (a < b) return GCD(b, a);
        if (a % b == 0) return b;
        return GCD(b, a % b);
    }
    static List<long> Divs(long a)
    {
        var list = new List<long>();
        var rev = new List<long>();
        for (var i = 1; i * i <= a; ++i)
        {
            if (a % i == 0)
            {
                list.Add(i);
                if (i * i < a) rev.Add(a / i);
            }
        }
        rev.Reverse();
        list.AddRange(rev);
        return list;
    }
}
0