結果

問題 No.339 何人が回答したのか
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 21:23:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 731 bytes
コンパイル時間 1,837 ms
コンパイル使用メモリ 73,984 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-11-26 02:29:24
合計ジャッジ時間 10,925 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
54,168 KB
testcase_01 AC 124 ms
54,016 KB
testcase_02 AC 119 ms
53,808 KB
testcase_03 AC 118 ms
52,632 KB
testcase_04 AC 106 ms
53,040 KB
testcase_05 AC 118 ms
54,044 KB
testcase_06 AC 116 ms
54,156 KB
testcase_07 AC 123 ms
54,048 KB
testcase_08 AC 108 ms
52,956 KB
testcase_09 AC 115 ms
53,692 KB
testcase_10 AC 118 ms
54,296 KB
testcase_11 AC 123 ms
54,076 KB
testcase_12 AC 120 ms
53,892 KB
testcase_13 AC 108 ms
52,980 KB
testcase_14 AC 108 ms
54,148 KB
testcase_15 AC 122 ms
53,860 KB
testcase_16 AC 108 ms
52,872 KB
testcase_17 AC 122 ms
54,128 KB
testcase_18 AC 104 ms
52,904 KB
testcase_19 AC 103 ms
52,640 KB
testcase_20 AC 119 ms
54,136 KB
testcase_21 AC 120 ms
53,852 KB
testcase_22 AC 108 ms
52,988 KB
testcase_23 AC 109 ms
52,608 KB
testcase_24 AC 120 ms
53,696 KB
testcase_25 AC 120 ms
54,304 KB
testcase_26 AC 118 ms
54,104 KB
testcase_27 AC 108 ms
52,600 KB
testcase_28 AC 121 ms
54,132 KB
testcase_29 AC 122 ms
53,824 KB
testcase_30 AC 120 ms
54,172 KB
testcase_31 AC 120 ms
53,940 KB
testcase_32 AC 114 ms
53,492 KB
testcase_33 AC 123 ms
53,656 KB
testcase_34 AC 119 ms
52,976 KB
testcase_35 AC 119 ms
54,204 KB
testcase_36 AC 118 ms
53,752 KB
testcase_37 AC 118 ms
53,844 KB
testcase_38 AC 104 ms
52,464 KB
testcase_39 AC 113 ms
53,416 KB
testcase_40 AC 120 ms
54,020 KB
testcase_41 AC 105 ms
52,896 KB
testcase_42 AC 119 ms
53,752 KB
testcase_43 AC 110 ms
53,088 KB
testcase_44 AC 121 ms
53,968 KB
testcase_45 AC 109 ms
52,528 KB
testcase_46 AC 103 ms
52,576 KB
testcase_47 AC 118 ms
53,976 KB
testcase_48 AC 116 ms
53,900 KB
testcase_49 AC 120 ms
54,056 KB
testcase_50 AC 108 ms
52,816 KB
testcase_51 AC 123 ms
53,820 KB
testcase_52 AC 122 ms
53,552 KB
testcase_53 AC 126 ms
53,868 KB
testcase_54 AC 124 ms
54,124 KB
testcase_55 AC 110 ms
52,592 KB
testcase_56 AC 110 ms
52,840 KB
testcase_57 AC 118 ms
53,848 KB
testcase_58 AC 121 ms
53,736 KB
testcase_59 AC 117 ms
54,204 KB
testcase_60 AC 120 ms
54,284 KB
testcase_61 AC 125 ms
54,052 KB
testcase_62 AC 109 ms
52,652 KB
testcase_63 AC 121 ms
54,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        if(N==1){
            System.out.println(1);
            return;
        }
        int [] A = new int [N];
        for(int i=0; i<N; i++){
            A[i]=sc.nextInt();
        }
        int x = gcd(A[0],A[1]);
        for(int i=2; i<N; i++){
            x = gcd(x,A[i]);
            if(x==1){break;}
        }
        System.out.println(100/x);
    }
    static int gcd(int a, int b){
        while(true){
            int t = a%b;
            a=b;
            b=t;
            if(t==0){
                break;
            }
        }
        return a;
    }
}
0