結果

問題 No.368 LCM of K-products
ユーザー h_noson
提出日時 2016-04-30 00:22:44
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 1,056 bytes
コンパイル時間 564 ms
コンパイル使用メモリ 61,716 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-04 23:34:17
合計ジャッジ時間 1,437 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

#define RREP(i,s,e) for (i = s; i >= e; i--)
#define rrep(i,n) RREP(i,n-1,0)
#define REP(i,s,e) for (i = s; i < e; i++)
#define rep(i,n) REP(i,0,n)
#define INF 100000000
#define MOD 1000000007

typedef long long ll;

ll gcd(int a, int b) {
    return b == 0 ? a : gcd(b,a%b);
}

ll power(ll x, int n) {
    ll ret = 1;
    while (n > 0) {
        if (n % 2) {
            ret *= x;
            ret %= MOD;
        }
        x *= x;
        x %= MOD;
        n /= 2;
    }
    return ret;
}

ll lcm(ll a, ll b) {
    return a * b % MOD * power(gcd(a,b),MOD-2) % MOD;
}

int main() {
    int i, n, k, d;
    ll ans;
    int a[1000];
    cin >> n >> k;
    rep (i,n) cin >> a[i];
    if (k == 1) {
        ans = 1;
        rep (i,n) ans = lcm(ans,a[i]);
    }
    else {
        ans = a[0];
        REP (i,1,n) ans = (ans * a[i]) % MOD;
        d = 1;
        rep (i,n) d = gcd(d,a[i]);
        ans = (ans * power(d,MOD-2)) % MOD;
    }
    cout << ans << endl;
    return 0;
}
0