結果

問題 No.339 何人が回答したのか
ユーザー uafr_csuafr_cs
提出日時 2016-02-02 22:00:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 562 bytes
コンパイル時間 1,837 ms
コンパイル使用メモリ 74,084 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-09-21 20:05:47
合計ジャッジ時間 11,660 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,008 KB
testcase_01 AC 121 ms
41,240 KB
testcase_02 AC 107 ms
40,392 KB
testcase_03 AC 113 ms
41,148 KB
testcase_04 AC 117 ms
41,016 KB
testcase_05 AC 116 ms
40,696 KB
testcase_06 AC 114 ms
40,992 KB
testcase_07 AC 113 ms
40,760 KB
testcase_08 AC 112 ms
39,848 KB
testcase_09 AC 119 ms
41,104 KB
testcase_10 AC 124 ms
41,168 KB
testcase_11 AC 119 ms
40,852 KB
testcase_12 AC 125 ms
40,824 KB
testcase_13 AC 123 ms
41,264 KB
testcase_14 AC 123 ms
41,188 KB
testcase_15 AC 119 ms
41,000 KB
testcase_16 AC 122 ms
40,692 KB
testcase_17 AC 124 ms
41,160 KB
testcase_18 AC 123 ms
41,048 KB
testcase_19 AC 121 ms
41,068 KB
testcase_20 AC 121 ms
41,116 KB
testcase_21 AC 121 ms
40,844 KB
testcase_22 AC 121 ms
40,248 KB
testcase_23 AC 113 ms
40,124 KB
testcase_24 AC 123 ms
40,816 KB
testcase_25 AC 125 ms
41,088 KB
testcase_26 AC 122 ms
40,844 KB
testcase_27 AC 109 ms
39,600 KB
testcase_28 AC 104 ms
39,728 KB
testcase_29 AC 124 ms
41,020 KB
testcase_30 AC 105 ms
39,984 KB
testcase_31 AC 118 ms
41,324 KB
testcase_32 AC 106 ms
39,644 KB
testcase_33 AC 119 ms
40,932 KB
testcase_34 AC 135 ms
41,276 KB
testcase_35 AC 129 ms
41,004 KB
testcase_36 AC 134 ms
41,320 KB
testcase_37 AC 138 ms
41,572 KB
testcase_38 AC 130 ms
41,248 KB
testcase_39 AC 122 ms
41,248 KB
testcase_40 AC 111 ms
40,000 KB
testcase_41 AC 116 ms
40,800 KB
testcase_42 AC 114 ms
40,864 KB
testcase_43 AC 118 ms
41,148 KB
testcase_44 AC 121 ms
41,008 KB
testcase_45 AC 117 ms
40,944 KB
testcase_46 AC 124 ms
41,276 KB
testcase_47 AC 121 ms
40,976 KB
testcase_48 AC 119 ms
40,932 KB
testcase_49 AC 109 ms
39,872 KB
testcase_50 AC 126 ms
40,912 KB
testcase_51 AC 111 ms
39,996 KB
testcase_52 AC 120 ms
40,404 KB
testcase_53 AC 102 ms
39,836 KB
testcase_54 AC 118 ms
41,128 KB
testcase_55 AC 121 ms
41,144 KB
testcase_56 AC 115 ms
40,860 KB
testcase_57 AC 113 ms
41,028 KB
testcase_58 AC 104 ms
39,996 KB
testcase_59 AC 117 ms
40,840 KB
testcase_60 AC 114 ms
40,940 KB
testcase_61 AC 115 ms
40,848 KB
testcase_62 AC 119 ms
41,232 KB
testcase_63 AC 121 ms
40,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	public static int gcd(int a, int b){
		return b == 0 ? a : gcd(b, a % b);
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		int[] array = new int[N];
		for(int i = 0; i < N; i++){
			array[i] = sc.nextInt();
		}
		
		int gcd = array[0];
		for(int i = 1; i < N; i++){
			gcd = gcd(gcd, array[i]);
		}
		
		System.out.println(100 / gcd);
	}

}
0