結果

問題 No.339 何人が回答したのか
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-30 23:14:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 551 bytes
コンパイル時間 3,169 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-06-30 08:26:54
合計ジャッジ時間 13,286 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,088 KB
testcase_01 AC 131 ms
54,464 KB
testcase_02 AC 124 ms
54,292 KB
testcase_03 AC 124 ms
54,340 KB
testcase_04 AC 123 ms
54,008 KB
testcase_05 AC 124 ms
53,996 KB
testcase_06 AC 126 ms
54,176 KB
testcase_07 AC 137 ms
53,972 KB
testcase_08 AC 124 ms
54,188 KB
testcase_09 AC 128 ms
54,228 KB
testcase_10 AC 122 ms
53,832 KB
testcase_11 AC 128 ms
54,224 KB
testcase_12 AC 124 ms
53,928 KB
testcase_13 AC 133 ms
54,288 KB
testcase_14 AC 126 ms
54,196 KB
testcase_15 AC 126 ms
53,932 KB
testcase_16 AC 128 ms
54,340 KB
testcase_17 AC 125 ms
54,348 KB
testcase_18 AC 126 ms
54,152 KB
testcase_19 AC 127 ms
54,332 KB
testcase_20 AC 131 ms
54,140 KB
testcase_21 AC 126 ms
54,240 KB
testcase_22 AC 131 ms
53,948 KB
testcase_23 AC 131 ms
54,332 KB
testcase_24 AC 126 ms
54,228 KB
testcase_25 AC 126 ms
53,716 KB
testcase_26 AC 125 ms
54,268 KB
testcase_27 AC 125 ms
54,224 KB
testcase_28 AC 127 ms
54,028 KB
testcase_29 AC 133 ms
54,104 KB
testcase_30 AC 130 ms
54,184 KB
testcase_31 AC 129 ms
53,708 KB
testcase_32 AC 131 ms
53,964 KB
testcase_33 AC 132 ms
54,168 KB
testcase_34 AC 131 ms
54,244 KB
testcase_35 AC 130 ms
54,256 KB
testcase_36 AC 126 ms
54,096 KB
testcase_37 AC 130 ms
54,052 KB
testcase_38 AC 127 ms
53,948 KB
testcase_39 AC 126 ms
54,032 KB
testcase_40 AC 127 ms
54,100 KB
testcase_41 AC 129 ms
54,380 KB
testcase_42 AC 129 ms
54,152 KB
testcase_43 AC 129 ms
54,168 KB
testcase_44 AC 128 ms
54,328 KB
testcase_45 AC 129 ms
54,100 KB
testcase_46 AC 128 ms
54,092 KB
testcase_47 AC 128 ms
54,036 KB
testcase_48 AC 126 ms
54,360 KB
testcase_49 AC 123 ms
54,184 KB
testcase_50 AC 126 ms
54,080 KB
testcase_51 AC 130 ms
53,952 KB
testcase_52 AC 126 ms
53,976 KB
testcase_53 AC 127 ms
54,000 KB
testcase_54 AC 129 ms
54,204 KB
testcase_55 AC 126 ms
53,928 KB
testcase_56 AC 131 ms
54,488 KB
testcase_57 AC 129 ms
54,128 KB
testcase_58 AC 130 ms
54,088 KB
testcase_59 AC 128 ms
54,188 KB
testcase_60 AC 128 ms
54,200 KB
testcase_61 AC 113 ms
53,120 KB
testcase_62 AC 128 ms
54,212 KB
testcase_63 AC 129 ms
54,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No339{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt();
		int[] A = new int[N];
		for(int i = 0; i < N; i++){
			A[i] = sc.nextInt();
		}
		Arrays.sort(A);
		int min_A = A[0];
		int gcd = 100;
		for(int i = 1; i < N; i++){
			int gcd_tmp = get_gcd(min_A, A[i]);
			if(gcd_tmp < gcd) gcd = gcd_tmp;
		}
		System.out.println(100/gcd);
	}
	private static int get_gcd(int x, int y){
		int tmp;
		while((tmp  = x%y) != 0){
			x = y;
			y = tmp;
		}
		return y;
	}
}
0