結果

問題 No.368 LCM of K-products
ユーザー mbanmban
提出日時 2017-06-02 14:31:15
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,432 bytes
コンパイル時間 3,158 ms
コンパイル使用メモリ 110,700 KB
実行使用メモリ 30,592 KB
最終ジャッジ日時 2024-09-21 22:12:42
合計ジャッジ時間 12,303 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 397 ms
30,448 KB
testcase_01 AC 524 ms
30,344 KB
testcase_02 AC 534 ms
26,504 KB
testcase_03 AC 529 ms
28,296 KB
testcase_04 AC 527 ms
28,424 KB
testcase_05 AC 532 ms
28,556 KB
testcase_06 AC 27 ms
23,880 KB
testcase_07 AC 27 ms
25,792 KB
testcase_08 AC 27 ms
23,880 KB
testcase_09 AC 27 ms
25,792 KB
testcase_10 AC 27 ms
23,884 KB
testcase_11 AC 26 ms
23,884 KB
testcase_12 AC 28 ms
23,620 KB
testcase_13 AC 264 ms
30,576 KB
testcase_14 AC 424 ms
30,584 KB
testcase_15 AC 477 ms
26,480 KB
testcase_16 AC 406 ms
30,572 KB
testcase_17 AC 350 ms
30,580 KB
testcase_18 AC 483 ms
28,524 KB
testcase_19 AC 122 ms
28,416 KB
testcase_20 AC 326 ms
28,416 KB
testcase_21 AC 88 ms
28,552 KB
testcase_22 AC 467 ms
30,324 KB
testcase_23 AC 27 ms
23,556 KB
testcase_24 AC 25 ms
23,880 KB
testcase_25 AC 27 ms
23,764 KB
testcase_26 AC 27 ms
23,896 KB
testcase_27 AC 26 ms
23,880 KB
testcase_28 AC 27 ms
23,620 KB
testcase_29 AC 27 ms
23,756 KB
testcase_30 AC 28 ms
25,928 KB
testcase_31 AC 26 ms
24,000 KB
testcase_32 AC 26 ms
25,924 KB
testcase_33 WA -
testcase_34 AC 521 ms
30,592 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;

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

struct P
{
    public int Cost, Index;
    public P(int cost, int index)
    {
        Cost = cost;
        Index = index;
    }
}

class Magatro
{
    private int N, K;
    private int[] A;
    private List<int> Primes = new List<int>();
    private long ans = 1;
    private const int Mod = 1000000007;

    private void Scan()
    {
        var line = Console.ReadLine().Split(' ');
        N = int.Parse(line[0]);
        K = int.Parse(line[1]);
        A = new int[N];
        line = Console.ReadLine().Split(' ');
        for (int i = 0; i < N; i++)
        {
            A[i] = int.Parse(line[i]);
        }
    }

    private void P()
    {
        int max = 100000;
        bool[] b = new bool[max + 1];
        b[0] = true;
        b[1] = true;
        for (int i = 2; i * i <= max; i++)
        {
            if (!b[i])
            {
                for (int j = i + i; j <= max; j += i)
                {
                    b[j] = true;
                }
            }
        }
        for (int i = 0; i <= max; i++)
        {
            if (!b[i])
            {
                Primes.Add(i);
            }
        }
    }

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

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

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