結果

問題 No.736 約比
ユーザー tentententen
提出日時 2022-09-13 16:00:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 1,525 bytes
コンパイル時間 2,949 ms
コンパイル使用メモリ 77,696 KB
実行使用メモリ 37,096 KB
最終ジャッジ日時 2024-11-30 21:49:32
合計ジャッジ時間 7,534 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,656 KB
testcase_01 AC 54 ms
36,728 KB
testcase_02 AC 53 ms
37,096 KB
testcase_03 AC 54 ms
36,860 KB
testcase_04 AC 55 ms
36,860 KB
testcase_05 AC 55 ms
36,740 KB
testcase_06 AC 53 ms
36,504 KB
testcase_07 AC 58 ms
36,884 KB
testcase_08 AC 56 ms
36,844 KB
testcase_09 AC 55 ms
36,660 KB
testcase_10 AC 54 ms
36,940 KB
testcase_11 AC 55 ms
36,376 KB
testcase_12 AC 55 ms
36,728 KB
testcase_13 AC 56 ms
36,976 KB
testcase_14 AC 54 ms
36,932 KB
testcase_15 AC 54 ms
36,756 KB
testcase_16 AC 53 ms
36,728 KB
testcase_17 AC 55 ms
37,020 KB
testcase_18 AC 55 ms
36,760 KB
testcase_19 AC 54 ms
37,016 KB
testcase_20 AC 54 ms
36,952 KB
testcase_21 AC 54 ms
36,664 KB
testcase_22 AC 53 ms
36,872 KB
testcase_23 AC 53 ms
36,676 KB
testcase_24 AC 55 ms
36,940 KB
testcase_25 AC 54 ms
36,880 KB
testcase_26 AC 53 ms
36,600 KB
testcase_27 AC 55 ms
36,624 KB
testcase_28 AC 54 ms
36,888 KB
testcase_29 AC 54 ms
36,636 KB
testcase_30 AC 54 ms
36,780 KB
testcase_31 AC 57 ms
36,492 KB
testcase_32 AC 54 ms
36,668 KB
testcase_33 AC 56 ms
36,632 KB
testcase_34 AC 55 ms
36,740 KB
testcase_35 AC 54 ms
37,072 KB
testcase_36 AC 55 ms
36,812 KB
testcase_37 AC 54 ms
37,008 KB
testcase_38 AC 56 ms
36,868 KB
testcase_39 AC 55 ms
36,716 KB
testcase_40 AC 56 ms
36,728 KB
testcase_41 AC 57 ms
36,680 KB
testcase_42 AC 54 ms
36,668 KB
testcase_43 AC 54 ms
36,664 KB
testcase_44 AC 54 ms
36,664 KB
testcase_45 AC 55 ms
36,624 KB
testcase_46 AC 55 ms
36,868 KB
testcase_47 AC 56 ms
36,716 KB
testcase_48 AC 54 ms
36,860 KB
testcase_49 AC 54 ms
36,732 KB
testcase_50 AC 55 ms
36,964 KB
testcase_51 AC 54 ms
36,664 KB
testcase_52 AC 53 ms
36,832 KB
testcase_53 AC 56 ms
36,892 KB
testcase_54 AC 54 ms
36,792 KB
testcase_55 AC 54 ms
36,852 KB
testcase_56 AC 54 ms
36,536 KB
testcase_57 AC 55 ms
36,668 KB
testcase_58 AC 55 ms
36,760 KB
testcase_59 AC 55 ms
36,752 KB
testcase_60 AC 55 ms
37,020 KB
testcase_61 AC 55 ms
37,004 KB
testcase_62 AC 54 ms
36,860 KB
testcase_63 AC 54 ms
36,816 KB
testcase_64 AC 54 ms
36,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long gcd = 0;
        long [] values = new long[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextLong();
            gcd = getGCD(values[i], gcd);
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            if (i > 0) {
                sb.append(":");
            }
            sb.append(values[i] / gcd);
        }
        System.out.println(sb);
    }
    
    static long getGCD(long x, long y) {
        if (y == 0) {
            return x;
        } else {
            return getGCD(y, x % y);
        }
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0