結果

問題 No.736 約比
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-18 22:25:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 2,080 ms
コンパイル使用メモリ 77,088 KB
実行使用メモリ 54,800 KB
最終ジャッジ日時 2024-10-01 14:34:09
合計ジャッジ時間 13,285 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,292 KB
testcase_01 AC 140 ms
54,076 KB
testcase_02 AC 148 ms
54,472 KB
testcase_03 AC 137 ms
54,412 KB
testcase_04 AC 155 ms
54,552 KB
testcase_05 AC 141 ms
54,368 KB
testcase_06 AC 123 ms
53,060 KB
testcase_07 AC 155 ms
54,624 KB
testcase_08 AC 153 ms
54,240 KB
testcase_09 AC 144 ms
54,184 KB
testcase_10 AC 160 ms
54,676 KB
testcase_11 AC 164 ms
54,732 KB
testcase_12 AC 155 ms
54,576 KB
testcase_13 AC 148 ms
54,368 KB
testcase_14 AC 140 ms
54,164 KB
testcase_15 AC 149 ms
54,300 KB
testcase_16 AC 156 ms
54,800 KB
testcase_17 AC 168 ms
54,464 KB
testcase_18 AC 151 ms
54,576 KB
testcase_19 AC 124 ms
53,184 KB
testcase_20 AC 142 ms
54,320 KB
testcase_21 AC 129 ms
52,972 KB
testcase_22 AC 120 ms
52,944 KB
testcase_23 AC 111 ms
52,848 KB
testcase_24 AC 148 ms
54,296 KB
testcase_25 AC 133 ms
54,000 KB
testcase_26 AC 134 ms
54,276 KB
testcase_27 AC 153 ms
54,508 KB
testcase_28 AC 159 ms
54,540 KB
testcase_29 AC 127 ms
54,264 KB
testcase_30 AC 142 ms
54,104 KB
testcase_31 AC 132 ms
54,112 KB
testcase_32 AC 136 ms
54,252 KB
testcase_33 AC 152 ms
54,420 KB
testcase_34 AC 124 ms
54,360 KB
testcase_35 AC 127 ms
54,244 KB
testcase_36 AC 142 ms
54,292 KB
testcase_37 AC 147 ms
54,356 KB
testcase_38 AC 150 ms
54,412 KB
testcase_39 AC 134 ms
54,136 KB
testcase_40 AC 145 ms
54,388 KB
testcase_41 AC 138 ms
54,416 KB
testcase_42 AC 150 ms
54,480 KB
testcase_43 AC 171 ms
54,484 KB
testcase_44 AC 146 ms
54,488 KB
testcase_45 AC 140 ms
54,440 KB
testcase_46 AC 131 ms
54,208 KB
testcase_47 AC 145 ms
54,480 KB
testcase_48 AC 127 ms
53,408 KB
testcase_49 AC 135 ms
54,188 KB
testcase_50 AC 136 ms
54,164 KB
testcase_51 AC 133 ms
54,212 KB
testcase_52 AC 145 ms
54,620 KB
testcase_53 AC 137 ms
54,088 KB
testcase_54 AC 148 ms
54,212 KB
testcase_55 AC 147 ms
54,644 KB
testcase_56 AC 139 ms
54,356 KB
testcase_57 AC 116 ms
53,100 KB
testcase_58 AC 140 ms
54,476 KB
testcase_59 AC 154 ms
54,384 KB
testcase_60 AC 138 ms
54,180 KB
testcase_61 AC 141 ms
54,472 KB
testcase_62 AC 127 ms
54,232 KB
testcase_63 AC 131 ms
54,132 KB
testcase_64 AC 132 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    long[] A = new long[n];
    A[0] = sc.nextLong();
    long ans = A[0];
    for(int i = 1; i < n; i++) {
      A[i] = sc.nextLong();
      ans = gcd(ans, A[i]);
    }
    for(int i = 0; i < n; i++) {
      if(i < n - 1) {
        System.out.print(A[i] / ans + ":");
      } else {
        System.out.print(A[i] / ans);
      }
    }
  }

  public static long gcd(long a, long b) {
    if(b == 0) return a;
    return gcd(b, (a % b));
  }
}
0