結果

問題 No.736 約比
ユーザー masamasa
提出日時 2019-01-11 15:25:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 1,437 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 77,200 KB
実行使用メモリ 54,564 KB
最終ジャッジ日時 2024-11-28 15:21:58
合計ジャッジ時間 13,383 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
54,200 KB
testcase_01 AC 151 ms
54,200 KB
testcase_02 AC 142 ms
53,944 KB
testcase_03 AC 153 ms
54,248 KB
testcase_04 AC 150 ms
54,340 KB
testcase_05 AC 138 ms
53,952 KB
testcase_06 AC 132 ms
53,980 KB
testcase_07 AC 166 ms
54,148 KB
testcase_08 AC 153 ms
54,484 KB
testcase_09 AC 145 ms
54,116 KB
testcase_10 AC 151 ms
54,036 KB
testcase_11 AC 153 ms
54,188 KB
testcase_12 AC 151 ms
54,296 KB
testcase_13 AC 147 ms
54,272 KB
testcase_14 AC 142 ms
54,212 KB
testcase_15 AC 151 ms
53,944 KB
testcase_16 AC 146 ms
54,040 KB
testcase_17 AC 154 ms
54,196 KB
testcase_18 AC 154 ms
53,908 KB
testcase_19 AC 147 ms
54,536 KB
testcase_20 AC 156 ms
54,128 KB
testcase_21 AC 147 ms
54,132 KB
testcase_22 AC 133 ms
54,052 KB
testcase_23 AC 133 ms
54,156 KB
testcase_24 AC 162 ms
54,344 KB
testcase_25 AC 118 ms
52,920 KB
testcase_26 AC 132 ms
54,160 KB
testcase_27 AC 150 ms
54,000 KB
testcase_28 AC 155 ms
53,872 KB
testcase_29 AC 133 ms
53,816 KB
testcase_30 AC 155 ms
54,244 KB
testcase_31 AC 132 ms
54,004 KB
testcase_32 AC 131 ms
54,064 KB
testcase_33 AC 163 ms
54,564 KB
testcase_34 AC 132 ms
54,084 KB
testcase_35 AC 131 ms
53,844 KB
testcase_36 AC 155 ms
54,140 KB
testcase_37 AC 152 ms
53,948 KB
testcase_38 AC 154 ms
54,116 KB
testcase_39 AC 134 ms
54,220 KB
testcase_40 AC 153 ms
54,176 KB
testcase_41 AC 161 ms
54,040 KB
testcase_42 AC 148 ms
54,164 KB
testcase_43 AC 149 ms
54,340 KB
testcase_44 AC 146 ms
53,932 KB
testcase_45 AC 148 ms
53,796 KB
testcase_46 AC 136 ms
54,112 KB
testcase_47 AC 157 ms
54,272 KB
testcase_48 AC 144 ms
54,356 KB
testcase_49 AC 138 ms
53,972 KB
testcase_50 AC 138 ms
53,972 KB
testcase_51 AC 140 ms
54,076 KB
testcase_52 AC 151 ms
54,160 KB
testcase_53 AC 160 ms
54,180 KB
testcase_54 AC 141 ms
54,400 KB
testcase_55 AC 127 ms
53,072 KB
testcase_56 AC 144 ms
54,256 KB
testcase_57 AC 134 ms
54,116 KB
testcase_58 AC 165 ms
54,092 KB
testcase_59 AC 152 ms
54,208 KB
testcase_60 AC 141 ms
53,936 KB
testcase_61 AC 155 ms
54,288 KB
testcase_62 AC 131 ms
53,832 KB
testcase_63 AC 131 ms
54,172 KB
testcase_64 AC 132 ms
54,140 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++) {
            if (val[i] % gcf != 0) gcf = 1;
        }
        
        // 答えの出力
        for (int i = 0; i < n; i++) {
            System.out.print(val[i] / gcf);
            if (i != n - 1) {
                System.out.print(":");
            }
        }
        System.out.println();
    }
}
0