結果

問題 No.14 最小公倍数ソート
ユーザー pluto77pluto77
提出日時 2018-07-28 11:14:45
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 4,065 ms / 5,000 ms
コード長 482 bytes
コンパイル時間 1,280 ms
コンパイル使用メモリ 159,064 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 18:19:28
合計ジャッジ時間 45,800 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 42 ms
5,376 KB
testcase_04 AC 4,065 ms
5,376 KB
testcase_05 AC 1,352 ms
5,376 KB
testcase_06 AC 1,635 ms
5,376 KB
testcase_07 AC 2,068 ms
5,376 KB
testcase_08 AC 2,725 ms
5,376 KB
testcase_09 AC 3,710 ms
5,376 KB
testcase_10 AC 3,629 ms
5,376 KB
testcase_11 AC 3,796 ms
5,376 KB
testcase_12 AC 3,869 ms
5,376 KB
testcase_13 AC 3,924 ms
5,376 KB
testcase_14 AC 3,802 ms
5,376 KB
testcase_15 AC 3,945 ms
5,376 KB
testcase_16 AC 1,459 ms
5,376 KB
testcase_17 AC 1,042 ms
5,376 KB
testcase_18 AC 468 ms
5,376 KB
testcase_19 AC 2,457 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//yuki14
#include <bits/stdc++.h>

using namespace std;

int main(){
 int n;
 cin>>n;
 vector<int> a(n);
 for(int i=0;i<n;i++){
  cin>>a[i];
 }
 for(int i=0;i<n-1;i++){
  int pos=i+1;
  int res=INT_MAX;
  for(int j=pos;j<n;j++){
   int temp=a[i]/__gcd(a[i],a[j])*a[j];
   if(temp<res || (temp==res && a[j]<a[pos])){
    res=temp;
    pos=j;
   }
  }
  swap(a[i+1],a[pos]);
 }
 for(int i=0;i<n;i++){
  if(i==n-1)
   printf("%d\n",a[i]);
  else
   printf("%d ",a[i]);
 }
 return 0;
}
0