結果

問題 No.14 最小公倍数ソート
ユーザー tottoripapertottoripaper
提出日時 2014-11-16 06:17:07
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 4,021 ms / 5,000 ms
コード長 621 bytes
コンパイル時間 596 ms
コンパイル使用メモリ 56,276 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-10 07:38:50
合計ジャッジ時間 45,736 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 42 ms
6,940 KB
testcase_04 AC 4,021 ms
6,940 KB
testcase_05 AC 1,350 ms
6,944 KB
testcase_06 AC 1,570 ms
6,940 KB
testcase_07 AC 2,278 ms
6,940 KB
testcase_08 AC 2,711 ms
6,940 KB
testcase_09 AC 3,726 ms
6,944 KB
testcase_10 AC 3,599 ms
6,940 KB
testcase_11 AC 3,773 ms
6,940 KB
testcase_12 AC 3,844 ms
6,944 KB
testcase_13 AC 3,945 ms
6,944 KB
testcase_14 AC 3,820 ms
6,944 KB
testcase_15 AC 3,948 ms
6,944 KB
testcase_16 AC 1,485 ms
6,944 KB
testcase_17 AC 1,047 ms
6,944 KB
testcase_18 AC 462 ms
6,940 KB
testcase_19 AC 2,460 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |     scanf("%d", &N);
      |     ~~~~~^~~~~~~~~~
main.cpp:9:31: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |     for(int i=0;i<N;i++){scanf("%d", A+i);}
      |                          ~~~~~^~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <algorithm>

int N, A[10000];

int main(){
    scanf("%d", &N);
    for(int i=0;i<N;i++){scanf("%d", A+i);}

    for(int i=1;i<N;i++){
        int mn = 1001001001, mn_v = 1001001001;
        for(int j=i;j<N;j++){
            int x = A[j] / std::__gcd(A[j], A[i-1]);
            if(x < mn_v || x == mn_v && A[j] < A[mn]){
                mn_v = x;
                mn = j;
            }
        }
        std::swap(A[i], A[mn]);
    }

    for(int i=0;i<N;i++){
        if(i == N-1){printf("%d\n", A[i]);}
        else{printf("%d ", A[i]);}
    }
}
0