結果

問題 No.368 LCM of K-products
ユーザー mbanmban
提出日時 2017-07-26 22:56:19
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,299 bytes
コンパイル時間 2,574 ms
コンパイル使用メモリ 109,312 KB
実行使用メモリ 24,064 KB
最終ジャッジ日時 2024-04-18 02:03:09
合計ジャッジ時間 6,297 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
24,064 KB
testcase_01 AC 231 ms
23,808 KB
testcase_02 AC 232 ms
23,680 KB
testcase_03 AC 231 ms
24,064 KB
testcase_04 AC 230 ms
23,680 KB
testcase_05 AC 231 ms
24,064 KB
testcase_06 AC 30 ms
19,456 KB
testcase_07 AC 30 ms
19,328 KB
testcase_08 AC 30 ms
19,328 KB
testcase_09 AC 30 ms
19,584 KB
testcase_10 AC 30 ms
19,072 KB
testcase_11 AC 31 ms
19,200 KB
testcase_12 AC 31 ms
19,200 KB
testcase_13 AC 125 ms
23,540 KB
testcase_14 AC 189 ms
23,668 KB
testcase_15 AC 210 ms
23,804 KB
testcase_16 AC 188 ms
23,420 KB
testcase_17 AC 162 ms
23,808 KB
testcase_18 AC 210 ms
23,668 KB
testcase_19 AC 70 ms
22,912 KB
testcase_20 AC 152 ms
23,680 KB
testcase_21 AC 58 ms
21,888 KB
testcase_22 AC 204 ms
23,552 KB
testcase_23 AC 31 ms
19,200 KB
testcase_24 AC 31 ms
19,456 KB
testcase_25 AC 30 ms
19,328 KB
testcase_26 AC 30 ms
19,328 KB
testcase_27 AC 31 ms
19,448 KB
testcase_28 AC 31 ms
19,584 KB
testcase_29 AC 30 ms
19,456 KB
testcase_30 AC 31 ms
19,572 KB
testcase_31 AC 32 ms
19,456 KB
testcase_32 AC 30 ms
19,448 KB
testcase_33 WA -
testcase_34 AC 226 ms
23,936 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;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;

class Program
{
    static void Main()
    {
        new Magatro().Solve();
    }
}

class Magatro
{
    private int N, K;
    private int[] A;
    private long ans = 1;
    private int[] Primes;
    private const int Mod = (int)1e9 + 7;

    private void Scan()
    {
        var line = Console.ReadLine().Split(' ');
        N = int.Parse(line[0]);
        K = int.Parse(line[1]);
        A = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
    }

    private void PrimeCalc()
    {
        int max = 32000;
        bool[] b = new bool[max + 1];
        b[0] = b[1] = true;
        var list = new List<int>();
        int i;
        for (i = 2; i * i <= max; i++)
        {
            if (!b[i])
            {
                list.Add(i);
                for (int j = i + i; j <= max; j += i)
                {
                    b[j] = true;
                }
            }
        }
        for (; i <= max; i++)
        {
            if (!b[i])
            {
                list.Add(i);
            }
        }
        Primes = list.ToArray();
    }

    private long Pow(long a,long b)
    {
        long res = 1;
        while (b > 0)
        {
            if (b % 2 == 1)
            {
                res *= a;
                res %= Mod;
            }
            a *= a;
            a %= Mod;
            b /= 2;
        }
        return res;
    }

    private void C(int n)
    {
        int[] cnt = new int[N];
        for(int i = 0; i < N; i++)
        {
            while (A[i] % n == 0)
            {
                cnt[i]++;
                A[i] /= n;
            }
        }
        Array.Sort(cnt, (a, b) => -a.CompareTo(b));
        int sum = 0;
        for (int i = 0; i < K; i++)
        {
            sum += cnt[i];
        }
        ans *= Pow(n, sum);
        ans %= Mod;
    }

    public void Solve()
    {
        Scan();
        PrimeCalc();
        foreach (int i in Primes)
        {
            C(i);
        }
        foreach(int i in A)
        {
            ans *= i;
            ans %= Mod;
        }
        Console.WriteLine(ans);
    }
}
0