結果

問題 No.339 何人が回答したのか
ユーザー hikari2004hikari2004
提出日時 2016-04-21 16:02:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 491 bytes
コンパイル時間 2,944 ms
コンパイル使用メモリ 74,640 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2024-10-04 14:32:38
合計ジャッジ時間 11,809 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,968 KB
testcase_01 AC 124 ms
54,160 KB
testcase_02 AC 105 ms
53,076 KB
testcase_03 AC 106 ms
52,964 KB
testcase_04 AC 108 ms
53,152 KB
testcase_05 AC 115 ms
54,140 KB
testcase_06 AC 115 ms
54,020 KB
testcase_07 AC 114 ms
53,904 KB
testcase_08 AC 112 ms
54,100 KB
testcase_09 AC 114 ms
54,120 KB
testcase_10 AC 111 ms
53,792 KB
testcase_11 AC 104 ms
54,312 KB
testcase_12 AC 104 ms
52,936 KB
testcase_13 AC 113 ms
53,916 KB
testcase_14 AC 105 ms
52,872 KB
testcase_15 AC 119 ms
54,124 KB
testcase_16 AC 117 ms
54,240 KB
testcase_17 AC 117 ms
54,308 KB
testcase_18 AC 121 ms
54,104 KB
testcase_19 AC 120 ms
53,972 KB
testcase_20 AC 103 ms
53,060 KB
testcase_21 AC 112 ms
53,984 KB
testcase_22 AC 101 ms
52,972 KB
testcase_23 AC 117 ms
53,932 KB
testcase_24 AC 113 ms
53,836 KB
testcase_25 AC 111 ms
54,040 KB
testcase_26 AC 106 ms
53,044 KB
testcase_27 AC 105 ms
52,732 KB
testcase_28 AC 119 ms
54,196 KB
testcase_29 AC 114 ms
54,192 KB
testcase_30 AC 105 ms
52,956 KB
testcase_31 AC 115 ms
54,436 KB
testcase_32 AC 115 ms
54,476 KB
testcase_33 AC 114 ms
53,904 KB
testcase_34 AC 116 ms
54,160 KB
testcase_35 AC 115 ms
54,004 KB
testcase_36 AC 118 ms
54,052 KB
testcase_37 AC 112 ms
54,248 KB
testcase_38 AC 112 ms
54,000 KB
testcase_39 AC 112 ms
54,016 KB
testcase_40 AC 116 ms
54,044 KB
testcase_41 AC 114 ms
53,992 KB
testcase_42 AC 106 ms
52,876 KB
testcase_43 AC 116 ms
53,900 KB
testcase_44 AC 118 ms
54,164 KB
testcase_45 AC 122 ms
54,336 KB
testcase_46 AC 113 ms
53,036 KB
testcase_47 AC 120 ms
53,932 KB
testcase_48 AC 123 ms
54,008 KB
testcase_49 AC 122 ms
54,116 KB
testcase_50 AC 120 ms
54,352 KB
testcase_51 AC 108 ms
52,976 KB
testcase_52 AC 119 ms
54,304 KB
testcase_53 AC 117 ms
54,204 KB
testcase_54 AC 109 ms
53,004 KB
testcase_55 AC 114 ms
54,044 KB
testcase_56 AC 120 ms
54,104 KB
testcase_57 AC 111 ms
53,440 KB
testcase_58 AC 104 ms
52,636 KB
testcase_59 AC 100 ms
53,196 KB
testcase_60 AC 113 ms
54,000 KB
testcase_61 AC 117 ms
54,100 KB
testcase_62 AC 105 ms
52,848 KB
testcase_63 AC 119 ms
53,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicorder;

import java.util.Scanner;

public class No_339 {
	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();
		}

		int b = 100;
		for(int i = 0; i < n; i++){
			b = GCD(b, a[i]);
		}
		System.out.println(100 / b);

	}

	static int GCD(int a,int b){
		if(a < b){
			return GCD(b,a);
		}
		if(b == 0){
			return a;
		}
		return GCD(b,a % b);
	}
}
0