結果

問題 No.736 約比
ユーザー masamasa
提出日時 2019-01-11 15:07:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,300 bytes
コンパイル時間 2,638 ms
コンパイル使用メモリ 77,456 KB
実行使用メモリ 41,976 KB
最終ジャッジ日時 2024-05-06 08:46:52
合計ジャッジ時間 14,070 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,244 KB
testcase_01 AC 126 ms
40,196 KB
testcase_02 AC 143 ms
41,344 KB
testcase_03 AC 133 ms
40,328 KB
testcase_04 AC 149 ms
41,520 KB
testcase_05 AC 122 ms
40,232 KB
testcase_06 AC 130 ms
41,356 KB
testcase_07 AC 159 ms
41,864 KB
testcase_08 AC 151 ms
41,456 KB
testcase_09 AC 147 ms
41,336 KB
testcase_10 AC 149 ms
41,860 KB
testcase_11 AC 156 ms
41,392 KB
testcase_12 AC 151 ms
41,656 KB
testcase_13 AC 149 ms
41,320 KB
testcase_14 AC 137 ms
41,188 KB
testcase_15 AC 143 ms
41,324 KB
testcase_16 AC 138 ms
41,040 KB
testcase_17 AC 154 ms
41,384 KB
testcase_18 AC 152 ms
41,744 KB
testcase_19 AC 148 ms
41,276 KB
testcase_20 AC 154 ms
41,384 KB
testcase_21 AC 146 ms
41,200 KB
testcase_22 AC 129 ms
40,896 KB
testcase_23 AC 128 ms
40,980 KB
testcase_24 AC 150 ms
41,744 KB
testcase_25 AC 129 ms
40,880 KB
testcase_26 AC 127 ms
40,992 KB
testcase_27 AC 148 ms
41,204 KB
testcase_28 AC 150 ms
41,324 KB
testcase_29 AC 126 ms
41,368 KB
testcase_30 AC 150 ms
41,388 KB
testcase_31 AC 125 ms
41,296 KB
testcase_32 AC 128 ms
41,132 KB
testcase_33 AC 153 ms
41,612 KB
testcase_34 AC 132 ms
41,064 KB
testcase_35 AC 133 ms
41,408 KB
testcase_36 AC 154 ms
41,196 KB
testcase_37 AC 156 ms
41,472 KB
testcase_38 AC 154 ms
41,776 KB
testcase_39 AC 133 ms
41,224 KB
testcase_40 AC 154 ms
41,532 KB
testcase_41 AC 155 ms
41,296 KB
testcase_42 AC 152 ms
41,372 KB
testcase_43 AC 150 ms
41,396 KB
testcase_44 AC 130 ms
39,916 KB
testcase_45 AC 147 ms
41,608 KB
testcase_46 AC 135 ms
41,016 KB
testcase_47 AC 158 ms
41,976 KB
testcase_48 AC 147 ms
41,576 KB
testcase_49 AC 139 ms
41,168 KB
testcase_50 AC 139 ms
41,564 KB
testcase_51 AC 142 ms
41,308 KB
testcase_52 AC 153 ms
41,264 KB
testcase_53 AC 149 ms
41,440 KB
testcase_54 AC 130 ms
39,912 KB
testcase_55 AC 144 ms
41,168 KB
testcase_56 AC 144 ms
41,508 KB
testcase_57 AC 136 ms
41,272 KB
testcase_58 AC 153 ms
41,372 KB
testcase_59 AC 159 ms
41,424 KB
testcase_60 AC 140 ms
41,332 KB
testcase_61 AC 153 ms
41,604 KB
testcase_62 AC 118 ms
40,188 KB
testcase_63 WA -
testcase_64 AC 130 ms
40,996 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