結果

問題 No.14 最小公倍数ソート
ユーザー FF256grhyFF256grhy
提出日時 2015-06-01 00:59:19
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 4,193 ms / 5,000 ms
コード長 764 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 22,784 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-06 13:07:39
合計ジャッジ時間 47,713 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 0 ms
5,376 KB
testcase_03 AC 44 ms
5,376 KB
testcase_04 AC 4,193 ms
5,376 KB
testcase_05 AC 1,399 ms
5,376 KB
testcase_06 AC 1,660 ms
5,376 KB
testcase_07 AC 2,165 ms
5,376 KB
testcase_08 AC 2,828 ms
5,376 KB
testcase_09 AC 3,887 ms
5,376 KB
testcase_10 AC 3,951 ms
5,376 KB
testcase_11 AC 4,040 ms
5,376 KB
testcase_12 AC 4,029 ms
5,376 KB
testcase_13 AC 4,129 ms
5,376 KB
testcase_14 AC 4,000 ms
5,376 KB
testcase_15 AC 4,102 ms
5,376 KB
testcase_16 AC 1,513 ms
5,376 KB
testcase_17 AC 1,082 ms
5,376 KB
testcase_18 AC 492 ms
5,376 KB
testcase_19 AC 2,563 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:11:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |         scanf("%d", &n);
      |         ~~~~~^~~~~~~~~~
main.cpp:14:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |                 scanf("%d", &a[i]);
      |                 ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

//とりあえず愚直な解法を投げてみる

#include <stdio.h>

int gcd(int, int);
int lcm(int, int);

int n, a[10000];

int main(void) {
	scanf("%d", &n);
	int i, j;
	for(i = 0; i < n; i++) {
		scanf("%d", &a[i]);
	}
	
	printf("%d ", a[0]);
	for(i = 0; i < n - 1; i++) {
		int min = 100000000, p = -1;
		for(j = i + 1; j < n; j++) {
			int l = lcm(a[i], a[j]);
			if( l < min || (l == min && a[j] < a[p]) ) {
				min = l;
				p = j;
			}
		}
		int temp = a[i + 1];
		a[i + 1] = a[p];
		a[p] = temp;
		printf("%d ", a[i + 1]);
	}
	printf("\n");
	
	return 0;
}

int gcd(int x, int y) {
	int max = (y < x) ? x : y;
	int min = (x < y) ? x : y;
	if(min == 0) { return max; }
	return gcd(min, max % min);
}

int lcm(int x, int y) {
	return x * y / gcd(x, y);
}
0