結果

問題 No.339 何人が回答したのか
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 21:20:57
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 646 bytes
コンパイル時間 2,215 ms
コンパイル使用メモリ 74,040 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-05-04 14:25:30
合計ジャッジ時間 10,400 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,132 KB
testcase_01 AC 117 ms
54,000 KB
testcase_02 AC 114 ms
54,204 KB
testcase_03 AC 109 ms
54,020 KB
testcase_04 AC 101 ms
52,780 KB
testcase_05 AC 114 ms
54,008 KB
testcase_06 AC 113 ms
54,056 KB
testcase_07 AC 115 ms
52,884 KB
testcase_08 AC 112 ms
54,204 KB
testcase_09 AC 107 ms
53,920 KB
testcase_10 AC 98 ms
52,944 KB
testcase_11 AC 112 ms
53,936 KB
testcase_12 AC 109 ms
53,932 KB
testcase_13 AC 100 ms
52,740 KB
testcase_14 AC 114 ms
54,076 KB
testcase_15 AC 116 ms
54,124 KB
testcase_16 AC 115 ms
53,852 KB
testcase_17 AC 107 ms
53,880 KB
testcase_18 AC 114 ms
54,120 KB
testcase_19 AC 105 ms
53,236 KB
testcase_20 AC 109 ms
53,848 KB
testcase_21 AC 108 ms
53,624 KB
testcase_22 AC 108 ms
54,296 KB
testcase_23 AC 115 ms
54,072 KB
testcase_24 AC 103 ms
52,532 KB
testcase_25 AC 108 ms
54,044 KB
testcase_26 AC 121 ms
54,184 KB
testcase_27 AC 101 ms
52,856 KB
testcase_28 AC 105 ms
54,228 KB
testcase_29 AC 100 ms
52,896 KB
testcase_30 AC 105 ms
52,648 KB
testcase_31 AC 119 ms
54,016 KB
testcase_32 AC 115 ms
53,952 KB
testcase_33 AC 117 ms
54,072 KB
testcase_34 AC 101 ms
52,856 KB
testcase_35 AC 124 ms
54,048 KB
testcase_36 AC 117 ms
54,208 KB
testcase_37 AC 126 ms
54,056 KB
testcase_38 AC 127 ms
54,208 KB
testcase_39 AC 126 ms
53,988 KB
testcase_40 AC 117 ms
53,968 KB
testcase_41 AC 115 ms
53,816 KB
testcase_42 AC 109 ms
52,896 KB
testcase_43 AC 122 ms
54,164 KB
testcase_44 AC 107 ms
53,060 KB
testcase_45 AC 121 ms
53,908 KB
testcase_46 AC 99 ms
52,980 KB
testcase_47 AC 105 ms
52,860 KB
testcase_48 AC 109 ms
53,980 KB
testcase_49 AC 98 ms
52,616 KB
testcase_50 AC 115 ms
53,936 KB
testcase_51 AC 107 ms
53,808 KB
testcase_52 AC 110 ms
54,072 KB
testcase_53 AC 107 ms
54,188 KB
testcase_54 AC 109 ms
54,196 KB
testcase_55 AC 108 ms
53,900 KB
testcase_56 AC 99 ms
52,892 KB
testcase_57 AC 108 ms
53,948 KB
testcase_58 AC 110 ms
53,892 KB
testcase_59 AC 109 ms
54,264 KB
testcase_60 AC 105 ms
53,816 KB
testcase_61 RE -
testcase_62 AC 110 ms
54,096 KB
testcase_63 AC 101 ms
52,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 [] 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