結果

問題 No.368 LCM of K-products
ユーザー h_nosonh_noson
提出日時 2016-04-30 00:09:37
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 861 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 60,088 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-15 06:20:27
合計ジャッジ時間 1,331 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,940 KB
testcase_02 WA -
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 WA -
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 WA -
testcase_12 AC 1 ms
6,944 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 2 ms
6,940 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 WA -
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 2 ms
6,944 KB
testcase_33 WA -
testcase_34 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

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;
}

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