結果

問題 No.14 最小公倍数ソート
ユーザー ynq1242ynq1242
提出日時 2014-10-28 16:20:26
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 1,572 bytes
コンパイル時間 839 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-12-30 13:56:07
合計ジャッジ時間 74,991 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,448 KB
testcase_01 AC 2 ms
8,448 KB
testcase_02 AC 2 ms
8,448 KB
testcase_03 AC 78 ms
8,448 KB
testcase_04 TLE -
testcase_05 AC 2,535 ms
8,448 KB
testcase_06 AC 2,929 ms
8,448 KB
testcase_07 AC 3,827 ms
8,448 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 3,103 ms
5,248 KB
testcase_17 AC 1,915 ms
5,248 KB
testcase_18 AC 856 ms
5,248 KB
testcase_19 AC 4,556 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include <fstream>
#include <stdio.h>
#include <stdlib.h>
#define _USE_MATH_DEFINES
#include <math.h>
#include<string>
#include<vector>
#include<cmath>
#include<stack>
#include<queue>
#include<sstream>
#include<algorithm>
#include<map>
#include<complex>
#include<ctime>
#include<set>
using namespace std;


#define li			long long int
#define rep(i,to)	for(li i=0;i<((li)(to));i++)
#define repp(i,start,to)	for(li i=(li)(start);i<((li)(to));i++)
#define pb			push_back
#define sz(v)		((li)(v).size())
#define bgn(v)		((v).begin())
#define eend(v)		((v).end())
#define allof(v)	(v).begin(), (v).end()
#define dodp(v,n)		memset(v,(li)n,sizeof(v))
#define bit(n)		(1ll<<(li)(n))
#define mp(a,b)		make_pair(a,b)
#define rin	rep(i,n)
#define EPS 1e-10
#define ETOL 1e-8
#define MOD 1000000007
#define F first
#define S second
#define endl "\n"
#define p2(a,b)		cout<<a<<"\t"<<b<<endl
#define p3(a,b,c)		cout<<a<<"\t"<<b<<"\t"<<c<<endl

inline li gcd(li a, li b){
	if(a<b)swap(a,b);
	if(a%b==0)return b;
	return gcd(b, a%b);
}

inline li lcm(li a, li b){
	li g=gcd(a,b);
	return a*b/g;
}

li a[10010];

int main(){
	ios::sync_with_stdio(false);
	li n;
	cin>>n;
	rin{cin>>a[i];}
	rep(i,n-1){
		li tmin=bit(55), tmini=bit(55), midx=-1;
		repp(j,i+1, n){
			li now=lcm(a[i], a[j]);
			if(now<tmin || (now==tmin && a[j]<a[midx])){
				tmin=now;
				midx=j;
			}
		}
		//cout<<midx<<endl;
		if(midx!=i+1){
			swap(a[midx], a[i+1]);
		}
	}
	rin{cout<<a[i]<<" ";}
	puts("");


	return 0;
}
0