結果

問題 No.736 約比
ユーザー kpinkcatkpinkcat
提出日時 2023-08-21 13:35:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 766 bytes
コンパイル時間 1,220 ms
コンパイル使用メモリ 111,696 KB
実行使用メモリ 17,096 KB
最終ジャッジ日時 2024-12-15 01:24:28
合計ジャッジ時間 136,441 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 WA -
testcase_03 TLE -
testcase_04 WA -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 WA -
testcase_15 WA -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 WA -
testcase_19 WA -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 2 ms
10,020 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 WA -
testcase_26 AC 2 ms
9,888 KB
testcase_27 TLE -
testcase_28 WA -
testcase_29 AC 93 ms
13,764 KB
testcase_30 TLE -
testcase_31 WA -
testcase_32 TLE -
testcase_33 WA -
testcase_34 WA -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 WA -
testcase_39 AC 2 ms
13,764 KB
testcase_40 TLE -
testcase_41 WA -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 AC 2 ms
6,820 KB
testcase_63 AC 2 ms
6,816 KB
testcase_64 AC 2 ms
16,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<map>
#include<vector>
#include <algorithm>
#include<math.h>
#include <iomanip>
#include<set>
using namespace std;


int main()
{
    int n, ans = 1;
    cin >> n;
    vector<int> v(n);
    set<int> cand;
    for (int i = 0; i < n; i++) cin >> v[i];
    for (int i = 2; i < v[0]; i++){
        int t = v[0];
        while (!(t%i)){
            cand.insert(i);
            t /= i;
        }
    }
    for (auto itr = cand.begin(); itr != cand.end(); itr++){
        int d = *itr;
        for (int j = 1; j < v.size(); j++){
            if ((v[j]%d)) break;
            if (j == v.size() -1) ans = d;
        }
    }
    string delim = "";
    for (auto x : v){
        cout << delim << x/ans;
        delim = ":";
    }
    cout << endl;
}
0