結果

問題 No.14 最小公倍数ソート
ユーザー kk
提出日時 2014-10-31 13:09:10
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 854 bytes
コンパイル時間 715 ms
コンパイル使用メモリ 73,108 KB
実行使用メモリ 77,492 KB
最終ジャッジ日時 2023-08-28 23:48:32
合計ジャッジ時間 66,740 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 WA -
testcase_04 TLE -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <queue>
#include <deque>
#include <stack>
#include <algorithm>
#include <functional>
#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <cctype>
#include <string>

using namespace std;

typedef uint64_t ll;

ll gcd(ll a, ll b){
   if(b==0)return a;
   else return gcd(b, a%b);
}

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

int main() {
  ll n;
  cin >> n;
  ll a[n];
  for (int i = 0; i < n; i++) scanf("%llu", &a[i]);
  sort(a+1, a+n);

  printf ("%llu ", a[0]);
  for (int i = 0; i < n-1; i++) {
    ll mini = 1000000000;
    int p = 0;
    for (int j = i+1; j < n; j++) {
      ll t = lcm(a[i], a[j]);
      if (mini > t) p = j;
      mini = min(mini, t);
    }
    printf ("%llu ", a[p]);
    swap(a[p], a[i+1]);
  }
}
0