結果

問題 No.14 最小公倍数ソート
ユーザー はまやんはまやんはまやんはまやん
提出日時 2017-06-11 14:15:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4,436 ms / 5,000 ms
コード長 1,527 bytes
コンパイル時間 1,515 ms
コンパイル使用メモリ 166,668 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-24 16:15:13
合計ジャッジ時間 49,718 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 48 ms
6,940 KB
testcase_04 AC 4,436 ms
6,940 KB
testcase_05 AC 1,495 ms
6,940 KB
testcase_06 AC 1,750 ms
6,940 KB
testcase_07 AC 2,291 ms
6,944 KB
testcase_08 AC 3,021 ms
6,940 KB
testcase_09 AC 3,976 ms
6,940 KB
testcase_10 AC 3,926 ms
6,940 KB
testcase_11 AC 4,026 ms
6,940 KB
testcase_12 AC 4,187 ms
6,944 KB
testcase_13 AC 4,180 ms
6,944 KB
testcase_14 AC 4,074 ms
6,940 KB
testcase_15 AC 4,246 ms
6,940 KB
testcase_16 AC 1,578 ms
6,940 KB
testcase_17 AC 1,104 ms
6,940 KB
testcase_18 AC 505 ms
6,940 KB
testcase_19 AC 2,665 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,a,b) for(int i=a;i<b;i++)
using namespace std; void _main(); int main(){cin.tie(0);ios::sync_with_stdio(0);_main();}
//---------------------------------------------------------------------------------------------------
/*---------------------------------------------------------------------------------------------------
            ∧_∧  
      ∧_∧  (´<_` )  Welcome to My Coding Space!
     ( ´_ゝ`) /  ⌒i     
    /   \     | |     
    /   / ̄ ̄ ̄ ̄/  |  
  __(__ニつ/     _/ .| .|____  
     \/____/ (u ⊃  
---------------------------------------------------------------------------------------------------*/


int gcd(int a, int b) { return a ? gcd(b%a, a) : b; }
int lcm(int a, int b) { return a / gcd(a, b) * b; }
int N, A[10101];
//---------------------------------------------------------------------------------------------------
void _main() {
    cin >> N;
    rep(i, 0, N) cin >> A[i];
    A[N] = 1;

    rep(i, 0, N) {
        if (0 < i) printf(" ");
        printf("%d", A[i]);

        int mi = i + 1, lc = lcm(A[i], A[i + 1]);
        rep(j, i + 2, N) {
            int x = lcm(A[i], A[j]);
            if (x < lc) {
                mi = j, lc = x;
            } else if (x == lc && A[j] < A[mi]) {
                mi = j, lc = x;
            }
        }
        swap(A[i + 1], A[mi]);
    }
    printf("\n");
}
0