結果

問題 No.14 最小公倍数ソート
ユーザー ytftytft
提出日時 2022-11-03 00:33:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,822 ms / 5,000 ms
コード長 455 bytes
コンパイル時間 3,080 ms
コンパイル使用メモリ 246,132 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-17 12:09:17
合計ジャッジ時間 34,221 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 31 ms
6,944 KB
testcase_04 AC 2,822 ms
6,944 KB
testcase_05 AC 937 ms
6,944 KB
testcase_06 AC 1,104 ms
6,944 KB
testcase_07 AC 1,440 ms
6,940 KB
testcase_08 AC 1,902 ms
6,944 KB
testcase_09 AC 2,576 ms
6,944 KB
testcase_10 AC 2,533 ms
6,944 KB
testcase_11 AC 2,621 ms
6,940 KB
testcase_12 AC 2,691 ms
6,940 KB
testcase_13 AC 2,731 ms
6,944 KB
testcase_14 AC 2,651 ms
6,944 KB
testcase_15 AC 2,745 ms
6,944 KB
testcase_16 AC 1,020 ms
6,940 KB
testcase_17 AC 727 ms
6,944 KB
testcase_18 AC 324 ms
6,944 KB
testcase_19 AC 1,721 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
	int N;
	scanf("%d",&N);
	int A[N];
	for(int i=0;i<N;++i){
		scanf("%d",&A[i]);
	}
	for(int i=0;i<N-2;++i){
		int minlcm=lcm(A[i],A[i+1]),index=i+1;
		for(int j=i+2;j<N;++j){
			int l=lcm(A[i],A[j]);
			if(l<minlcm){
				minlcm=l;
				index=j;
			}else if(l==minlcm&&A[index]>A[j]){
				index=j;
			}
		}
		swap(A[i+1],A[index]);
	}
	for(int i=0;i<N;++i){
		printf("%d ",A[i]);
	}
	printf("\n");
}
0