結果

問題 No.339 何人が回答したのか
ユーザー 37zigen37zigen
提出日時 2016-04-11 19:55:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,000 ms
コード長 587 bytes
コンパイル時間 1,947 ms
コンパイル使用メモリ 75,008 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-10-04 06:35:41
合計ジャッジ時間 11,336 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,684 KB
testcase_01 AC 127 ms
53,860 KB
testcase_02 AC 119 ms
53,804 KB
testcase_03 AC 125 ms
53,896 KB
testcase_04 AC 125 ms
54,192 KB
testcase_05 AC 120 ms
54,160 KB
testcase_06 AC 120 ms
54,036 KB
testcase_07 AC 131 ms
54,104 KB
testcase_08 AC 117 ms
54,268 KB
testcase_09 AC 118 ms
54,140 KB
testcase_10 AC 117 ms
54,168 KB
testcase_11 AC 120 ms
54,140 KB
testcase_12 AC 117 ms
54,024 KB
testcase_13 AC 108 ms
52,880 KB
testcase_14 AC 101 ms
52,904 KB
testcase_15 AC 111 ms
53,452 KB
testcase_16 AC 116 ms
54,152 KB
testcase_17 AC 115 ms
54,288 KB
testcase_18 AC 113 ms
53,956 KB
testcase_19 AC 118 ms
54,032 KB
testcase_20 AC 124 ms
53,972 KB
testcase_21 AC 124 ms
53,892 KB
testcase_22 AC 118 ms
53,964 KB
testcase_23 AC 124 ms
54,044 KB
testcase_24 AC 104 ms
52,992 KB
testcase_25 AC 118 ms
54,212 KB
testcase_26 AC 120 ms
54,100 KB
testcase_27 AC 117 ms
54,436 KB
testcase_28 AC 111 ms
53,836 KB
testcase_29 AC 104 ms
53,644 KB
testcase_30 AC 105 ms
52,984 KB
testcase_31 AC 104 ms
54,404 KB
testcase_32 AC 115 ms
54,120 KB
testcase_33 AC 112 ms
53,960 KB
testcase_34 AC 129 ms
54,132 KB
testcase_35 AC 124 ms
54,016 KB
testcase_36 AC 116 ms
53,856 KB
testcase_37 AC 116 ms
54,216 KB
testcase_38 AC 119 ms
53,984 KB
testcase_39 AC 119 ms
54,176 KB
testcase_40 AC 121 ms
53,844 KB
testcase_41 AC 124 ms
54,036 KB
testcase_42 AC 116 ms
54,136 KB
testcase_43 AC 101 ms
52,820 KB
testcase_44 AC 114 ms
54,108 KB
testcase_45 AC 121 ms
53,964 KB
testcase_46 AC 123 ms
53,684 KB
testcase_47 AC 107 ms
52,960 KB
testcase_48 AC 115 ms
53,960 KB
testcase_49 AC 122 ms
54,088 KB
testcase_50 AC 121 ms
54,024 KB
testcase_51 AC 116 ms
53,976 KB
testcase_52 AC 119 ms
54,100 KB
testcase_53 AC 106 ms
53,104 KB
testcase_54 AC 109 ms
52,808 KB
testcase_55 AC 109 ms
52,936 KB
testcase_56 AC 128 ms
54,100 KB
testcase_57 AC 128 ms
54,108 KB
testcase_58 AC 128 ms
53,972 KB
testcase_59 AC 122 ms
53,812 KB
testcase_60 AC 125 ms
54,208 KB
testcase_61 AC 125 ms
54,008 KB
testcase_62 AC 119 ms
54,060 KB
testcase_63 AC 108 ms
53,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.*;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	void solve(){
		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 gcd=1;
		for(int i=0;i<n;i++){
			if(i==0)gcd=a[i];
			else gcd=GCD(a[i],gcd);
		}
		System.out.println(100/gcd);
	}
	int GCD(int a,int b){
		if(a<b){
			int d=a;
			a=b;
			b=d;
		}
		if(b==0)return a;
		return GCD(b,a%b);
	}
	void tr(Object...o){System.out.println(Arrays.deepToString(o));}
}
0