結果

問題 No.736 約比
ユーザー masamasa
提出日時 2019-01-11 15:07:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,300 bytes
コンパイル時間 2,434 ms
コンパイル使用メモリ 77,944 KB
実行使用メモリ 56,060 KB
最終ジャッジ日時 2024-11-28 14:07:13
合計ジャッジ時間 12,238 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
52,980 KB
testcase_01 AC 127 ms
53,856 KB
testcase_02 AC 125 ms
54,112 KB
testcase_03 AC 149 ms
54,140 KB
testcase_04 AC 137 ms
54,208 KB
testcase_05 AC 117 ms
54,188 KB
testcase_06 AC 115 ms
54,180 KB
testcase_07 AC 132 ms
54,284 KB
testcase_08 AC 132 ms
54,288 KB
testcase_09 AC 122 ms
53,352 KB
testcase_10 AC 142 ms
54,288 KB
testcase_11 AC 126 ms
54,460 KB
testcase_12 AC 129 ms
54,680 KB
testcase_13 AC 129 ms
54,212 KB
testcase_14 AC 118 ms
54,088 KB
testcase_15 AC 129 ms
54,152 KB
testcase_16 AC 124 ms
54,244 KB
testcase_17 AC 145 ms
54,448 KB
testcase_18 AC 132 ms
54,368 KB
testcase_19 AC 130 ms
54,024 KB
testcase_20 AC 130 ms
54,148 KB
testcase_21 AC 115 ms
53,060 KB
testcase_22 AC 119 ms
53,840 KB
testcase_23 AC 116 ms
54,108 KB
testcase_24 AC 124 ms
53,352 KB
testcase_25 AC 107 ms
54,932 KB
testcase_26 AC 120 ms
54,044 KB
testcase_27 AC 136 ms
54,412 KB
testcase_28 AC 139 ms
54,424 KB
testcase_29 AC 116 ms
54,032 KB
testcase_30 AC 135 ms
54,448 KB
testcase_31 AC 113 ms
53,056 KB
testcase_32 AC 112 ms
53,868 KB
testcase_33 AC 129 ms
54,272 KB
testcase_34 AC 116 ms
54,052 KB
testcase_35 AC 111 ms
53,884 KB
testcase_36 AC 135 ms
54,272 KB
testcase_37 AC 136 ms
54,488 KB
testcase_38 AC 134 ms
54,220 KB
testcase_39 AC 115 ms
53,920 KB
testcase_40 AC 134 ms
54,284 KB
testcase_41 AC 129 ms
54,524 KB
testcase_42 AC 113 ms
53,104 KB
testcase_43 AC 131 ms
54,324 KB
testcase_44 AC 143 ms
54,252 KB
testcase_45 AC 125 ms
54,240 KB
testcase_46 AC 113 ms
53,472 KB
testcase_47 AC 135 ms
54,172 KB
testcase_48 AC 122 ms
54,504 KB
testcase_49 AC 113 ms
54,136 KB
testcase_50 AC 105 ms
52,944 KB
testcase_51 AC 111 ms
52,968 KB
testcase_52 AC 145 ms
54,272 KB
testcase_53 AC 129 ms
53,968 KB
testcase_54 AC 111 ms
53,008 KB
testcase_55 AC 107 ms
52,576 KB
testcase_56 AC 133 ms
54,144 KB
testcase_57 AC 115 ms
53,832 KB
testcase_58 AC 133 ms
54,264 KB
testcase_59 AC 137 ms
54,292 KB
testcase_60 AC 115 ms
54,120 KB
testcase_61 AC 127 ms
54,300 KB
testcase_62 AC 101 ms
52,900 KB
testcase_63 WA -
testcase_64 AC 110 ms
53,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    // ユークリッド互除法関数
    public static long gcd(long argA, long argB) {
        long a,b,r;
        a = argA;
        b = argB;

        if (a < b) {
            long tmp = a;
            a = b;
            b = tmp;
        }
        
        r = a % b;

        while (r > 0) {
            a = b;
            b = r;
            r = a % b;
        }
        
        return b;
    }
    
    public static void main(String[] args) throws Exception {

        Scanner sc  = new Scanner(System.in);
        int n       = sc.nextInt();
        long val[]  = new long[n];
        long gcf    = 0;
        long tmp    = 0;
        
        // テストケースの値を確保
        for (int i = 0; i < n; i++) {
            val[i] = sc.nextLong();
        }
        
        // 最大公約数を求める
        for (int i = 0; i < n; i++) {
            if (i + 1 < n) tmp = gcd(val[i], val[i + 1]);
            if (gcf == 0) gcf = tmp;
            if (gcf > tmp) gcf = tmp;
        }
        
        // 答えの出力
        for (int i = 0; i < n; i++) {
            System.out.print(val[i] / gcf);
            if (i != n - 1) {
                System.out.print(":");
            }
        }
        System.out.println();
    }
}
0