結果

問題 No.14 最小公倍数ソート
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2018-01-05 01:35:48
言語 Java
(openjdk 23)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,384 bytes
コンパイル時間 3,091 ms
コンパイル使用メモリ 78,664 KB
実行使用メモリ 54,868 KB
最終ジャッジ日時 2024-12-23 04:01:29
合計ジャッジ時間 61,912 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
38,112 KB
testcase_01 AC 92 ms
38,188 KB
testcase_02 AC 100 ms
38,372 KB
testcase_03 AC 203 ms
40,928 KB
testcase_04 TLE -
testcase_05 AC 1,896 ms
41,776 KB
testcase_06 AC 2,190 ms
42,020 KB
testcase_07 AC 2,767 ms
42,348 KB
testcase_08 AC 3,591 ms
42,224 KB
testcase_09 AC 4,817 ms
54,724 KB
testcase_10 AC 4,718 ms
42,360 KB
testcase_11 AC 4,894 ms
54,820 KB
testcase_12 AC 4,967 ms
54,432 KB
testcase_13 TLE -
testcase_14 AC 4,934 ms
54,868 KB
testcase_15 TLE -
testcase_16 AC 2,014 ms
42,096 KB
testcase_17 AC 1,457 ms
41,668 KB
testcase_18 AC 739 ms
41,424 KB
testcase_19 AC 3,257 ms
42,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


class Main {
    static int gcd(int x,int y){
        while(y!=0){
            int r=x%y;
            x=y;
            y=r;
        }
        return x;
    }
    public static void main(String[] args) {
        MyScanner sc = new MyScanner();
        out = new PrintWriter(new BufferedOutputStream(System.out));
        int n=sc.nextInt();
        int[]a=sc.nextIntArray(n);
        for(int i=0;i<n-1;++i){
            long min=Long.MAX_VALUE;
            int minind=-1;
            for(int j=i+1;j<n;++j){
                int lcm=a[i]/gcd(a[i],a[j])*a[j];
                long v=(long)lcm<<20|a[j];
                if(min>v){
                    min=v;
                    minind=j;
                }
            }
            if(minind!=i+1){
                int t=a[i+1];
                a[i+1]=a[minind];
                a[minind]=t;
            }
        }
        for(int i=0;i<n;++i)
            out.print(a[i]+(i==n-1?"\n":" "));
        out.close();
    }
    // http://codeforces.com/blog/entry/7018
    //-----------PrintWriter for faster output---------------------------------
    public static PrintWriter out;
    //-----------MyScanner class for faster input----------
    public static class MyScanner {
        BufferedReader br;
        StringTokenizer st;
        public MyScanner() {
            br = new BufferedReader(new InputStreamReader(System.in));
        }
        String next() {
            while (st == null || !st.hasMoreElements()) {
                try {
                    st = new StringTokenizer(br.readLine());
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            return st.nextToken();
        }
        int nextInt() {
            return Integer.parseInt(next());
        }
        long nextLong() {
            return Long.parseLong(next());
        }
        double nextDouble() {
            return Double.parseDouble(next());
        }
        String nextLine(){
            String str = "";
            try {
                str = br.readLine();
            } catch (IOException e) {
                e.printStackTrace();
            }
            return str;
        }
        int[] nextIntArray(int n){
            int[]r=new int[n];
            for(int i=0;i<n;++i)r[i]=nextInt();
            return r;
        }
    }
}
0