結果

問題 No.339 何人が回答したのか
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 21:23:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 731 bytes
コンパイル時間 3,360 ms
コンパイル使用メモリ 77,548 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-05-04 14:26:41
合計ジャッジ時間 11,861 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,340 KB
testcase_01 AC 118 ms
40,588 KB
testcase_02 AC 110 ms
40,272 KB
testcase_03 AC 106 ms
40,460 KB
testcase_04 AC 106 ms
39,832 KB
testcase_05 AC 109 ms
40,824 KB
testcase_06 AC 107 ms
41,184 KB
testcase_07 AC 113 ms
41,288 KB
testcase_08 AC 112 ms
41,272 KB
testcase_09 AC 110 ms
41,124 KB
testcase_10 AC 98 ms
40,032 KB
testcase_11 AC 107 ms
40,964 KB
testcase_12 AC 98 ms
40,112 KB
testcase_13 AC 117 ms
41,536 KB
testcase_14 AC 109 ms
41,152 KB
testcase_15 AC 118 ms
41,140 KB
testcase_16 AC 112 ms
41,172 KB
testcase_17 AC 101 ms
40,144 KB
testcase_18 AC 106 ms
40,696 KB
testcase_19 AC 117 ms
41,096 KB
testcase_20 AC 125 ms
41,352 KB
testcase_21 AC 113 ms
41,180 KB
testcase_22 AC 109 ms
41,192 KB
testcase_23 AC 114 ms
41,300 KB
testcase_24 AC 113 ms
41,220 KB
testcase_25 AC 102 ms
40,208 KB
testcase_26 AC 102 ms
40,480 KB
testcase_27 AC 108 ms
41,272 KB
testcase_28 AC 108 ms
41,328 KB
testcase_29 AC 104 ms
39,944 KB
testcase_30 AC 99 ms
40,096 KB
testcase_31 AC 102 ms
40,332 KB
testcase_32 AC 111 ms
41,080 KB
testcase_33 AC 107 ms
41,308 KB
testcase_34 AC 97 ms
40,052 KB
testcase_35 AC 109 ms
41,296 KB
testcase_36 AC 100 ms
40,336 KB
testcase_37 AC 109 ms
40,640 KB
testcase_38 AC 99 ms
40,112 KB
testcase_39 AC 96 ms
39,800 KB
testcase_40 AC 113 ms
41,060 KB
testcase_41 AC 115 ms
41,052 KB
testcase_42 AC 95 ms
39,796 KB
testcase_43 AC 104 ms
40,208 KB
testcase_44 AC 96 ms
39,880 KB
testcase_45 AC 111 ms
40,880 KB
testcase_46 AC 108 ms
40,332 KB
testcase_47 AC 110 ms
41,180 KB
testcase_48 AC 114 ms
41,364 KB
testcase_49 AC 100 ms
40,076 KB
testcase_50 AC 95 ms
39,740 KB
testcase_51 AC 105 ms
40,328 KB
testcase_52 AC 105 ms
40,484 KB
testcase_53 AC 116 ms
41,180 KB
testcase_54 AC 102 ms
40,124 KB
testcase_55 AC 99 ms
40,612 KB
testcase_56 AC 108 ms
41,280 KB
testcase_57 AC 111 ms
41,060 KB
testcase_58 AC 112 ms
41,192 KB
testcase_59 AC 113 ms
41,340 KB
testcase_60 AC 101 ms
40,072 KB
testcase_61 AC 103 ms
40,160 KB
testcase_62 AC 113 ms
41,072 KB
testcase_63 AC 119 ms
41,340 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