結果
| 問題 |
No.736 約比
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-09-29 00:09:21 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 749 bytes |
| コンパイル時間 | 659 ms |
| コンパイル使用メモリ | 67,564 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-12 07:41:03 |
| 合計ジャッジ時間 | 2,155 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 30 WA * 35 |
ソースコード
#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 == 1) {
cout << b[k];
} else {
cout << a[k] / cd;
}
if (k != n - 1) {
cout << ":";
}
}
cout << endl;
}