結果

問題 No.14 最小公倍数ソート
ユーザー yaoshimaxyaoshimax
提出日時 2015-02-10 14:30:59
言語 C++11
(gcc 11.4.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 47 ms
5,376 KB
testcase_04 AC 4,485 ms
5,376 KB
testcase_05 AC 1,502 ms
5,376 KB
testcase_06 AC 1,755 ms
5,376 KB
testcase_07 AC 2,280 ms
5,376 KB
testcase_08 AC 3,012 ms
5,376 KB
testcase_09 AC 4,094 ms
5,376 KB
testcase_10 AC 4,016 ms
5,376 KB
testcase_11 AC 4,144 ms
5,376 KB
testcase_12 AC 4,299 ms
5,376 KB
testcase_13 AC 4,338 ms
5,376 KB
testcase_14 AC 4,227 ms
6,940 KB
testcase_15 AC 4,359 ms
6,944 KB
testcase_16 AC 1,625 ms
6,944 KB
testcase_17 AC 1,163 ms
6,940 KB
testcase_18 AC 512 ms
6,940 KB
testcase_19 AC 2,791 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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]);
      |                               ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#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;
}
0