結果

問題 No.736 約比
ユーザー YamaKasaYamaKasa
提出日時 2018-09-28 21:35:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 2,575 ms
コンパイル使用メモリ 79,560 KB
実行使用メモリ 42,124 KB
最終ジャッジ日時 2024-10-12 05:42:13
合計ジャッジ時間 14,702 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
41,788 KB
testcase_01 AC 146 ms
41,468 KB
testcase_02 AC 134 ms
40,492 KB
testcase_03 AC 139 ms
40,444 KB
testcase_04 AC 160 ms
42,084 KB
testcase_05 AC 146 ms
41,348 KB
testcase_06 AC 129 ms
40,508 KB
testcase_07 AC 164 ms
41,592 KB
testcase_08 AC 164 ms
41,676 KB
testcase_09 AC 156 ms
41,572 KB
testcase_10 AC 161 ms
41,464 KB
testcase_11 AC 156 ms
41,420 KB
testcase_12 AC 155 ms
41,680 KB
testcase_13 AC 155 ms
41,952 KB
testcase_14 AC 152 ms
41,768 KB
testcase_15 AC 162 ms
41,464 KB
testcase_16 AC 138 ms
40,060 KB
testcase_17 AC 152 ms
41,280 KB
testcase_18 AC 160 ms
41,600 KB
testcase_19 AC 151 ms
41,756 KB
testcase_20 AC 164 ms
41,736 KB
testcase_21 AC 157 ms
41,620 KB
testcase_22 AC 141 ms
41,576 KB
testcase_23 AC 140 ms
41,844 KB
testcase_24 AC 156 ms
41,908 KB
testcase_25 AC 138 ms
41,488 KB
testcase_26 AC 131 ms
40,348 KB
testcase_27 AC 159 ms
41,860 KB
testcase_28 AC 159 ms
41,668 KB
testcase_29 AC 142 ms
41,852 KB
testcase_30 AC 157 ms
41,996 KB
testcase_31 AC 139 ms
41,464 KB
testcase_32 AC 142 ms
41,208 KB
testcase_33 AC 162 ms
41,724 KB
testcase_34 AC 144 ms
41,572 KB
testcase_35 AC 142 ms
41,588 KB
testcase_36 AC 161 ms
41,680 KB
testcase_37 AC 162 ms
41,852 KB
testcase_38 AC 165 ms
41,916 KB
testcase_39 AC 146 ms
41,572 KB
testcase_40 AC 161 ms
41,732 KB
testcase_41 AC 165 ms
41,792 KB
testcase_42 AC 154 ms
42,124 KB
testcase_43 AC 155 ms
41,472 KB
testcase_44 AC 157 ms
41,464 KB
testcase_45 AC 175 ms
41,400 KB
testcase_46 AC 156 ms
41,412 KB
testcase_47 AC 177 ms
41,908 KB
testcase_48 AC 171 ms
41,876 KB
testcase_49 AC 129 ms
40,064 KB
testcase_50 AC 145 ms
41,336 KB
testcase_51 AC 146 ms
41,512 KB
testcase_52 AC 159 ms
41,756 KB
testcase_53 AC 155 ms
41,588 KB
testcase_54 AC 155 ms
41,908 KB
testcase_55 AC 149 ms
41,444 KB
testcase_56 AC 155 ms
41,508 KB
testcase_57 AC 144 ms
41,480 KB
testcase_58 AC 160 ms
41,692 KB
testcase_59 AC 166 ms
41,952 KB
testcase_60 AC 150 ms
41,660 KB
testcase_61 AC 159 ms
41,628 KB
testcase_62 AC 140 ms
41,576 KB
testcase_63 AC 139 ms
41,512 KB
testcase_64 AC 133 ms
41,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		long[]a = new long[N];
		for(int i = 0; i < N; i++) {
			a[i] = scan.nextLong();
		}
		scan.close();
		long g = gcd(a[0], a[1]);
		for(int i = 2; i < N; i++) {
			g = gcd(g, a[i]);
		}
		long[]b = new long[N];
		for(int i = 0; i < N; i++) {
			b[i] = a[i] / g;
		}
		for(int i = 0; i < N; i++) {
			long t = a[i] / g;
			if(i == N - 1) {
				System.out.println(t);
			}else {
				System.out.print(t + ":");
			}
		}
	}
	static long gcd(long m, long n) {
	    if(m < n) return gcd(n, m);
	    if(n == 0) return m;
	    return gcd(n, m % n);
	}
}
0