結果

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

ソースコード

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);
    }
    const vector<ll> b = a;

    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) {
        if (cd == a[0]) {
            cout << b[k];
        } else {
            cout << a[k] / cd;
        }
        if (k != n - 1) {
            cout << ":";
        }
    }
    cout << endl;
}
0