結果

問題 No.14 最小公倍数ソート
ユーザー mamekinmamekin
提出日時 2015-01-11 22:34:54
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 4,590 ms / 5,000 ms
コード長 1,067 bytes
コンパイル時間 1,642 ms
コンパイル使用メモリ 101,108 KB
実行使用メモリ 394,496 KB
最終ジャッジ日時 2024-06-13 03:55:41
合計ジャッジ時間 57,230 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
394,240 KB
testcase_01 AC 289 ms
394,240 KB
testcase_02 AC 293 ms
394,240 KB
testcase_03 AC 362 ms
394,112 KB
testcase_04 AC 4,590 ms
394,240 KB
testcase_05 AC 1,704 ms
394,368 KB
testcase_06 AC 2,004 ms
394,240 KB
testcase_07 AC 2,538 ms
394,368 KB
testcase_08 AC 3,300 ms
394,368 KB
testcase_09 AC 4,250 ms
394,496 KB
testcase_10 AC 4,226 ms
394,368 KB
testcase_11 AC 4,337 ms
394,368 KB
testcase_12 AC 4,444 ms
394,496 KB
testcase_13 AC 4,480 ms
394,368 KB
testcase_14 AC 4,369 ms
394,240 KB
testcase_15 AC 4,483 ms
394,368 KB
testcase_16 AC 2,145 ms
394,368 KB
testcase_17 AC 1,672 ms
394,496 KB
testcase_18 AC 953 ms
394,240 KB
testcase_19 AC 3,155 ms
394,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <string>
#include <vector>
#include <list>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <bitset>
#include <numeric>
#include <limits>
#include <climits>
#include <cfloat>
#include <functional>
using namespace std;

vector<vector<int> > memo(10001, vector<int>(10001, -1));

int gcd(int a, int b){
    if(b == 0)
        return a;
    if(memo[a][b] != -1)
        return memo[a][b];

    return memo[a][b] = gcd(b, a % b);
}

int lcm(int a, int b){
    return a / gcd(a, b) * b;
}

int main()
{
    int n;
    cin >> n;
    vector<pair<int, int> > a(n);
    for(int i=0; i<n; ++i)
        cin >> a[i].second;

    for(int i=0; i<n; ++i){
        for(int j=i+1; j<n; ++j)
            a[j].first = lcm(a[i].second, a[j].second);
        sort(a.begin() + i + 1, a.end());
    }

    cout << a[0].second;
    for(int i=1; i<n; ++i)
        cout << ' ' << a[i].second;
    cout << endl;

    return 0;
}
0