結果

問題 No.339 何人が回答したのか
ユーザー htensaihtensai
提出日時 2019-11-21 19:10:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 405 bytes
コンパイル時間 2,591 ms
コンパイル使用メモリ 74,020 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-10-10 21:31:04
合計ジャッジ時間 12,889 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
54,120 KB
testcase_01 AC 136 ms
53,760 KB
testcase_02 AC 133 ms
53,848 KB
testcase_03 AC 131 ms
54,240 KB
testcase_04 AC 119 ms
53,144 KB
testcase_05 AC 125 ms
52,732 KB
testcase_06 AC 130 ms
54,056 KB
testcase_07 AC 130 ms
53,636 KB
testcase_08 AC 132 ms
54,004 KB
testcase_09 AC 130 ms
54,008 KB
testcase_10 AC 134 ms
53,940 KB
testcase_11 AC 134 ms
53,608 KB
testcase_12 AC 133 ms
53,980 KB
testcase_13 AC 134 ms
54,180 KB
testcase_14 AC 134 ms
54,012 KB
testcase_15 AC 134 ms
54,136 KB
testcase_16 AC 134 ms
53,984 KB
testcase_17 AC 129 ms
54,100 KB
testcase_18 AC 131 ms
54,120 KB
testcase_19 AC 130 ms
53,916 KB
testcase_20 AC 131 ms
54,256 KB
testcase_21 AC 133 ms
54,144 KB
testcase_22 AC 135 ms
53,836 KB
testcase_23 AC 126 ms
53,512 KB
testcase_24 AC 134 ms
53,924 KB
testcase_25 AC 131 ms
53,932 KB
testcase_26 AC 131 ms
53,812 KB
testcase_27 AC 132 ms
53,960 KB
testcase_28 AC 133 ms
54,056 KB
testcase_29 AC 133 ms
54,168 KB
testcase_30 AC 134 ms
53,656 KB
testcase_31 AC 136 ms
54,108 KB
testcase_32 AC 132 ms
53,944 KB
testcase_33 AC 134 ms
54,268 KB
testcase_34 AC 132 ms
53,976 KB
testcase_35 AC 132 ms
53,976 KB
testcase_36 AC 133 ms
53,776 KB
testcase_37 AC 133 ms
53,852 KB
testcase_38 AC 131 ms
53,952 KB
testcase_39 AC 132 ms
54,276 KB
testcase_40 AC 130 ms
54,084 KB
testcase_41 AC 138 ms
54,120 KB
testcase_42 AC 139 ms
53,960 KB
testcase_43 AC 138 ms
53,860 KB
testcase_44 AC 136 ms
54,372 KB
testcase_45 AC 131 ms
54,092 KB
testcase_46 AC 131 ms
53,984 KB
testcase_47 AC 129 ms
54,092 KB
testcase_48 AC 132 ms
54,024 KB
testcase_49 AC 132 ms
53,960 KB
testcase_50 AC 133 ms
54,152 KB
testcase_51 AC 134 ms
54,124 KB
testcase_52 AC 130 ms
53,864 KB
testcase_53 AC 124 ms
52,692 KB
testcase_54 AC 132 ms
54,068 KB
testcase_55 AC 129 ms
53,920 KB
testcase_56 AC 133 ms
53,820 KB
testcase_57 AC 132 ms
53,928 KB
testcase_58 AC 135 ms
54,296 KB
testcase_59 AC 135 ms
54,040 KB
testcase_60 AC 131 ms
54,032 KB
testcase_61 AC 131 ms
54,020 KB
testcase_62 AC 133 ms
53,812 KB
testcase_63 AC 132 ms
53,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int div = 100;
		for (int i = 0; i < n; i++) {
		    div = gcd(sc.nextInt(), div);
		}
		System.out.println(100 / div);
	}
	
	static int gcd(int x, int y) {
	    if (x % y == 0) {
	        return y;
	    } else {
	        return gcd(y, x % y);
	    }
	}
}
0