結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,212 KB
testcase_01 AC 142 ms
41,048 KB
testcase_02 AC 144 ms
41,320 KB
testcase_03 AC 132 ms
40,504 KB
testcase_04 AC 149 ms
41,416 KB
testcase_05 AC 134 ms
41,336 KB
testcase_06 AC 131 ms
41,236 KB
testcase_07 AC 152 ms
41,632 KB
testcase_08 AC 151 ms
41,408 KB
testcase_09 AC 146 ms
41,324 KB
testcase_10 AC 149 ms
41,548 KB
testcase_11 AC 154 ms
41,392 KB
testcase_12 AC 153 ms
41,632 KB
testcase_13 AC 153 ms
41,520 KB
testcase_14 AC 131 ms
40,076 KB
testcase_15 AC 150 ms
41,476 KB
testcase_16 AC 146 ms
41,448 KB
testcase_17 AC 156 ms
41,468 KB
testcase_18 AC 149 ms
41,412 KB
testcase_19 AC 150 ms
41,372 KB
testcase_20 AC 151 ms
41,368 KB
testcase_21 AC 145 ms
41,164 KB
testcase_22 AC 130 ms
41,212 KB
testcase_23 AC 132 ms
41,384 KB
testcase_24 AC 151 ms
41,404 KB
testcase_25 AC 130 ms
41,260 KB
testcase_26 AC 132 ms
41,488 KB
testcase_27 AC 161 ms
41,640 KB
testcase_28 AC 153 ms
41,460 KB
testcase_29 AC 116 ms
40,096 KB
testcase_30 AC 157 ms
41,332 KB
testcase_31 AC 128 ms
41,056 KB
testcase_32 AC 129 ms
41,088 KB
testcase_33 AC 147 ms
41,300 KB
testcase_34 AC 127 ms
41,072 KB
testcase_35 AC 113 ms
40,100 KB
testcase_36 AC 147 ms
41,756 KB
testcase_37 AC 156 ms
41,820 KB
testcase_38 AC 150 ms
41,472 KB
testcase_39 AC 129 ms
41,108 KB
testcase_40 AC 150 ms
41,448 KB
testcase_41 AC 149 ms
41,688 KB
testcase_42 AC 139 ms
41,376 KB
testcase_43 AC 143 ms
41,736 KB
testcase_44 AC 139 ms
41,380 KB
testcase_45 AC 143 ms
41,788 KB
testcase_46 AC 117 ms
40,188 KB
testcase_47 AC 150 ms
41,536 KB
testcase_48 AC 143 ms
41,208 KB
testcase_49 AC 130 ms
41,092 KB
testcase_50 AC 136 ms
41,348 KB
testcase_51 AC 125 ms
40,344 KB
testcase_52 AC 152 ms
41,452 KB
testcase_53 AC 157 ms
41,508 KB
testcase_54 AC 124 ms
40,184 KB
testcase_55 AC 123 ms
40,156 KB
testcase_56 AC 140 ms
41,332 KB
testcase_57 AC 133 ms
41,024 KB
testcase_58 AC 148 ms
41,360 KB
testcase_59 AC 152 ms
41,504 KB
testcase_60 AC 142 ms
41,172 KB
testcase_61 AC 149 ms
41,236 KB
testcase_62 AC 129 ms
41,228 KB
testcase_63 AC 128 ms
40,972 KB
testcase_64 AC 131 ms
41,000 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