結果
| 問題 | No.339 何人が回答したのか |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-01-08 21:37:07 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 344 bytes |
| コンパイル時間 | 1,495 ms |
| コンパイル使用メモリ | 167,492 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-24 00:49:16 |
| 合計ジャッジ時間 | 3,326 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 61 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n;
cin >> n;
vector<int> a(n);
cin >> a[0];
int g = a[0];
int ans = 0;
for(int i = 1; i < n; i++) {
cin >> a[i];
g = __gcd(g, a[i]);
}
for(int i = 0; i < n; i++) {
ans += a[i] / g;
}
cout << ans << endl;
return 0;
}