結果

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

ソースコード

diff #

#include <iostream>

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;
    int a[100];

    cin >> n;

    for (int i = 0; i < n; ++i) {
        cin >> a[i];
    }

    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