結果

問題 No.736 約比
ユーザー Layla
提出日時 2018-09-29 00:01:31
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 642 bytes
コンパイル時間 670 ms
コンパイル使用メモリ 66,696 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-12 07:36:31
合計ジャッジ時間 2,236 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10 WA * 55
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

typedef long long ll;

ll gcd(ll a, ll b) {
    if (b == 0) {
        return a;
    }
    return gcd(b, a % b);
}

int main(void) {
    int n;
    vector<ll> a;

    cin >> n;

    for (int i = 0; i < n; ++i) {
        ll temp;
        cin >> temp;
        a.push_back(temp);
    }

    sort(a.begin(), a.end());

    ll cd = gcd(a[0], a[1]);

    for (int j = 1; j < n; ++j) {
        cd = gcd(a[j], cd);
    }

    for (int k = 0; k < n; ++k) {
        cout << a[k] / cd;
        if (k != n - 1) {
            cout << ":";
        }
    }
    cout << endl;
}
0