結果

問題 No.339 何人が回答したのか
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 21:22:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 733 bytes
コンパイル時間 2,291 ms
コンパイル使用メモリ 73,764 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-05-04 14:26:02
合計ジャッジ時間 12,363 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,584 KB
testcase_01 AC 139 ms
41,524 KB
testcase_02 AC 130 ms
41,264 KB
testcase_03 AC 132 ms
41,272 KB
testcase_04 AC 127 ms
41,432 KB
testcase_05 AC 131 ms
41,156 KB
testcase_06 AC 132 ms
41,184 KB
testcase_07 AC 133 ms
41,544 KB
testcase_08 AC 132 ms
41,296 KB
testcase_09 AC 130 ms
41,004 KB
testcase_10 AC 127 ms
41,460 KB
testcase_11 AC 134 ms
41,520 KB
testcase_12 AC 118 ms
40,164 KB
testcase_13 AC 132 ms
41,424 KB
testcase_14 AC 130 ms
41,276 KB
testcase_15 AC 118 ms
40,284 KB
testcase_16 AC 132 ms
41,384 KB
testcase_17 AC 133 ms
41,352 KB
testcase_18 AC 133 ms
41,432 KB
testcase_19 AC 130 ms
41,460 KB
testcase_20 AC 119 ms
39,868 KB
testcase_21 AC 138 ms
41,428 KB
testcase_22 AC 133 ms
41,668 KB
testcase_23 AC 132 ms
41,300 KB
testcase_24 AC 131 ms
41,160 KB
testcase_25 AC 132 ms
41,096 KB
testcase_26 AC 114 ms
40,160 KB
testcase_27 AC 130 ms
41,452 KB
testcase_28 AC 133 ms
41,288 KB
testcase_29 AC 133 ms
41,652 KB
testcase_30 AC 117 ms
39,992 KB
testcase_31 AC 132 ms
41,412 KB
testcase_32 AC 131 ms
41,564 KB
testcase_33 AC 134 ms
41,292 KB
testcase_34 AC 130 ms
41,456 KB
testcase_35 AC 135 ms
41,520 KB
testcase_36 AC 140 ms
41,568 KB
testcase_37 AC 117 ms
40,172 KB
testcase_38 AC 130 ms
41,344 KB
testcase_39 AC 132 ms
41,248 KB
testcase_40 AC 134 ms
41,584 KB
testcase_41 AC 132 ms
41,256 KB
testcase_42 AC 133 ms
41,064 KB
testcase_43 AC 133 ms
41,464 KB
testcase_44 AC 117 ms
39,916 KB
testcase_45 AC 130 ms
41,316 KB
testcase_46 AC 131 ms
41,444 KB
testcase_47 AC 134 ms
41,196 KB
testcase_48 AC 130 ms
41,144 KB
testcase_49 AC 129 ms
41,584 KB
testcase_50 AC 131 ms
41,432 KB
testcase_51 AC 130 ms
41,568 KB
testcase_52 AC 119 ms
40,044 KB
testcase_53 AC 132 ms
41,540 KB
testcase_54 AC 137 ms
41,588 KB
testcase_55 AC 135 ms
41,496 KB
testcase_56 AC 134 ms
41,432 KB
testcase_57 AC 116 ms
39,876 KB
testcase_58 AC 131 ms
41,420 KB
testcase_59 AC 132 ms
41,436 KB
testcase_60 AC 132 ms
41,280 KB
testcase_61 WA -
testcase_62 AC 133 ms
41,136 KB
testcase_63 AC 133 ms
41,324 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(100);
            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