結果
問題 | No.736 約比 |
ユーザー | potoooooooo |
提出日時 | 2018-09-28 22:37:27 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 446 bytes |
コンパイル時間 | 1,651 ms |
コンパイル使用メモリ | 168,968 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-12 06:55:42 |
合計ジャッジ時間 | 3,329 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 65 |
ソースコード
#include <bits/stdc++.h> using namespace std; long long gcd(long long a, long long b) { if (a % b == 0) return b; else return gcd(b, a % b); } int main(){ int n; cin >> n; vector<long long> v(n); for (int i = 0; i < n; i++) cin >> v[i]; long long a = v[0]; for (int i = 1; i < n; i++) { a = gcd(v[i], a); } for (int i = 0; i < n; i++) { if (i != 0) cout << ":"; cout << v[i] / a; } cout << endl; return 0; }