結果

問題 No.14 最小公倍数ソート
ユーザー r_dream0r_dream0
提出日時 2017-02-09 01:19:29
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 4,686 ms / 5,000 ms
コード長 704 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 59,116 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-07 13:19:18
合計ジャッジ時間 52,658 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 50 ms
5,376 KB
testcase_04 AC 4,686 ms
5,376 KB
testcase_05 AC 1,574 ms
5,376 KB
testcase_06 AC 1,839 ms
5,376 KB
testcase_07 AC 2,402 ms
5,376 KB
testcase_08 AC 3,158 ms
5,376 KB
testcase_09 AC 4,268 ms
5,376 KB
testcase_10 AC 4,224 ms
5,376 KB
testcase_11 AC 4,350 ms
5,376 KB
testcase_12 AC 4,484 ms
5,376 KB
testcase_13 AC 4,543 ms
5,376 KB
testcase_14 AC 4,402 ms
5,376 KB
testcase_15 AC 4,553 ms
5,376 KB
testcase_16 AC 1,689 ms
5,376 KB
testcase_17 AC 1,206 ms
5,376 KB
testcase_18 AC 538 ms
5,376 KB
testcase_19 AC 2,847 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <limits>
#include <cstdint>
using namespace std;

int main() {
  int32_t N;
  cin >> N;
  int32_t a[N];
  for(int32_t i = 0; i < N; i++) cin >> a[i];
  for(int32_t i = 0; i < N - 1; i++) {
    int32_t m = numeric_limits<int32_t>::max(), m2 = numeric_limits<int32_t>::max(), t = -1;
    for(int j = i + 1; j < N; j++) {
      int32_t lcm = a[i] * a[j] / __gcd(a[i], a[j]);
      if(lcm < m) {
        m = lcm;
        m2 = a[j];
        t = j;
      }else if(lcm == m && m2 > a[j]) {
        m2 = a[j];
        t = j;
      }
    }
    swap(a[i + 1], a[t]);
  }
  for(int i = 0; i < N; i++) {
    if(i) cout << " ";
    cout << a[i];
  }
  cout << endl;
}
0