結果

問題 No.736 約比
ユーザー dgd1724dgd1724
提出日時 2018-11-25 18:01:03
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 898 bytes
コンパイル時間 949 ms
コンパイル使用メモリ 70,816 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-24 19:46:50
合計ジャッジ時間 33,999 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 2 ms
8,448 KB
testcase_02 AC 1 ms
10,496 KB
testcase_03 AC 1 ms
8,448 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 17 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 32 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 1 ms
5,248 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 AC 1 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 5 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 1 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 1 ms
5,248 KB
testcase_40 AC 1 ms
5,248 KB
testcase_41 AC 1 ms
5,248 KB
testcase_42 TLE -
testcase_43 AC 790 ms
5,248 KB
testcase_44 AC 243 ms
5,248 KB
testcase_45 AC 693 ms
5,248 KB
testcase_46 TLE -
testcase_47 AC 1,034 ms
5,248 KB
testcase_48 AC 1,961 ms
6,820 KB
testcase_49 TLE -
testcase_50 TLE -
testcase_51 AC 365 ms
5,248 KB
testcase_52 AC 915 ms
5,248 KB
testcase_53 AC 805 ms
5,248 KB
testcase_54 AC 1,330 ms
5,248 KB
testcase_55 AC 1,073 ms
5,248 KB
testcase_56 TLE -
testcase_57 AC 480 ms
5,248 KB
testcase_58 TLE -
testcase_59 AC 1,673 ms
5,248 KB
testcase_60 TLE -
testcase_61 AC 1,078 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 AC 2 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <fstream>
#include <iostream>
#include <vector>
#include <algorithm>

int main() {

	//std::ifstream inf("Text.txt");	std::cin.rdbuf(inf.rdbuf());

	int N = 0;
	std::cin >> N;

	std::vector<long long int> a(N);
	for (int i = 0; i < N; i++) {
		std::cin >> a[i];
	}

	long long int min = *std::min_element(a.begin(), a.end());
	std::vector<long long int> b;
	for (int i = 1; i <= min / i; i++) {
		if (min % i == 0) {
			b.push_back(i);
			b.push_back(min / i);
		}
	}
	std::sort(b.rbegin(), b.rend());

	bool flg = false;
	for (unsigned int i = 0; i < b.size(); i++) {
		flg = true;
		for (int j = 0; j < N; j++) {
			if (a[j] % b[i] != 0) {
				flg = false;
				break;
			}
		}
		if (flg) {
			for (int k = 0; k < N; k++) {
				a[k] = a[k] / b[i];
			}
			break;
		}
	}

	for (int i = 0; i < N - 1; i++) {
		std::cout << a[i] << ":";
	}
	std::cout << a[N - 1] << std::endl;

	return 0;

}
0