結果
| 問題 | No.14 最小公倍数ソート |
| コンテスト | |
| ユーザー |
yaoshimax
|
| 提出日時 | 2015-02-10 14:30:59 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 4,485 ms / 5,000 ms |
| コード長 | 959 bytes |
| コンパイル時間 | 1,286 ms |
| コンパイル使用メモリ | 85,980 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-23 18:08:24 |
| 合計ジャッジ時間 | 51,168 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:29:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
29 | scanf("%d",&N);
| ~~~~~^~~~~~~~~
main.cpp:31:36: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
31 | for( int i = 0 ; i <N; i++) scanf("%d", &a[i]);
| ~~~~~^~~~~~~~~~~~~
ソースコード
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <climits>
#include <cfloat>
#include <map>
#include <utility>
#include <set>
#include <iostream>
#include <memory>
#include <string>
#include <vector>
#include <algorithm>
#include <functional>
#include <sstream>
#include <complex>
#include <stack>
#include <queue>
#include <cstring>
using namespace std;
int gcd( int a, int b){
if( a > b ) return gcd(b,a);
if( b%a==0 ) return a;
return gcd( b%a, a);
}
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; i++){
int maxVal = INT_MAX;
int nextInd = i+1;
for( int j = i+1; j<N; j++){
int val= a[i]*a[j]/gcd(a[i],a[j]);
if( val < maxVal || (val==maxVal && a[nextInd] > a[j])){
maxVal=val;
nextInd=j;
}
}
swap(a[i+1],a[nextInd]);
}
for( int i = 0 ; i <N; i++ )printf("%d ",a[i]);
printf("\n");
return 0;
}
yaoshimax