結果

問題 No.14 最小公倍数ソート
ユーザー myantamyanta
提出日時 2017-05-02 10:33:04
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 4,647 ms / 5,000 ms
コード長 769 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 42,752 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-14 04:40:44
合計ジャッジ時間 51,375 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 50 ms
5,376 KB
testcase_04 AC 4,647 ms
5,376 KB
testcase_05 AC 1,561 ms
5,376 KB
testcase_06 AC 1,829 ms
5,376 KB
testcase_07 AC 2,371 ms
5,376 KB
testcase_08 AC 3,113 ms
5,376 KB
testcase_09 AC 4,207 ms
5,376 KB
testcase_10 AC 4,156 ms
5,376 KB
testcase_11 AC 4,300 ms
5,376 KB
testcase_12 AC 4,431 ms
5,376 KB
testcase_13 AC 4,480 ms
5,376 KB
testcase_14 AC 4,383 ms
5,376 KB
testcase_15 AC 4,478 ms
5,376 KB
testcase_16 AC 1,657 ms
5,376 KB
testcase_17 AC 1,189 ms
5,376 KB
testcase_18 AC 534 ms
5,376 KB
testcase_19 AC 2,826 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:38:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   38 |                         scanf("%d", &a[i]);
      |                         ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include<cstdio>
#include<vector>
#include<algorithm>


using namespace std;


int gcd(int a, int b)
{
	int c;
	while((c=a%b))
	{
		a=b;
		b=c;
	}
	return b;
}


int lcm(int a, int b)
{
	return a/gcd(a,b)*b;
}


int main(void)
{
	int n, i, j, x;
	int min_lcm, min_idx;
	vector<int> a;

	while(scanf("%d", &n)==1)
	{
		a.resize(n);
		for(i=0;i<n;i++)
		{
			scanf("%d", &a[i]);
		}

		for(i=0;i+2<n;i++)
		{
			min_lcm=lcm(a[i], a[i+1]);
			min_idx=i+1;
			for(j=i+2;j<n;j++)
			{
				x=lcm(a[i], a[j]);
				if(min_lcm>x)
				{
					min_lcm=x;
					min_idx=j;
				}
				else if(min_lcm==x && a[min_idx]>a[j])
				{
					min_idx=j;
				}
			}
			swap(a[i+1], a[min_idx]);
		}

		for(i=0;i<n-1;i++)
		{
			printf("%d ", a[i]);
		}
		printf("%d\n", a[i]);
	}

	return 0;
}
0