結果

問題 No.339 何人が回答したのか
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-04 06:13:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 1,000 ms
コード長 737 bytes
コンパイル時間 3,744 ms
コンパイル使用メモリ 75,060 KB
実行使用メモリ 56,056 KB
最終ジャッジ日時 2024-10-08 07:45:48
合計ジャッジ時間 14,924 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
54,312 KB
testcase_01 AC 149 ms
54,048 KB
testcase_02 AC 144 ms
53,788 KB
testcase_03 AC 138 ms
53,800 KB
testcase_04 AC 142 ms
54,056 KB
testcase_05 AC 143 ms
54,144 KB
testcase_06 AC 140 ms
53,992 KB
testcase_07 AC 143 ms
54,272 KB
testcase_08 AC 144 ms
54,228 KB
testcase_09 AC 138 ms
54,136 KB
testcase_10 AC 142 ms
54,016 KB
testcase_11 AC 142 ms
54,012 KB
testcase_12 AC 138 ms
53,820 KB
testcase_13 AC 140 ms
53,908 KB
testcase_14 AC 143 ms
53,972 KB
testcase_15 AC 147 ms
54,428 KB
testcase_16 AC 146 ms
54,316 KB
testcase_17 AC 150 ms
54,072 KB
testcase_18 AC 144 ms
54,340 KB
testcase_19 AC 142 ms
54,120 KB
testcase_20 AC 142 ms
53,972 KB
testcase_21 AC 147 ms
54,196 KB
testcase_22 AC 145 ms
53,960 KB
testcase_23 AC 143 ms
54,080 KB
testcase_24 AC 147 ms
53,948 KB
testcase_25 AC 141 ms
53,996 KB
testcase_26 AC 146 ms
54,104 KB
testcase_27 AC 140 ms
54,308 KB
testcase_28 AC 143 ms
54,228 KB
testcase_29 AC 141 ms
53,904 KB
testcase_30 AC 141 ms
53,912 KB
testcase_31 AC 142 ms
53,932 KB
testcase_32 AC 140 ms
53,996 KB
testcase_33 AC 141 ms
54,132 KB
testcase_34 AC 140 ms
54,048 KB
testcase_35 AC 139 ms
54,132 KB
testcase_36 AC 142 ms
54,100 KB
testcase_37 AC 141 ms
53,756 KB
testcase_38 AC 139 ms
53,912 KB
testcase_39 AC 142 ms
54,156 KB
testcase_40 AC 140 ms
54,108 KB
testcase_41 AC 145 ms
54,416 KB
testcase_42 AC 143 ms
54,072 KB
testcase_43 AC 140 ms
54,096 KB
testcase_44 AC 138 ms
53,948 KB
testcase_45 AC 139 ms
54,192 KB
testcase_46 AC 140 ms
53,864 KB
testcase_47 AC 141 ms
54,136 KB
testcase_48 AC 136 ms
54,008 KB
testcase_49 AC 139 ms
53,984 KB
testcase_50 AC 141 ms
56,056 KB
testcase_51 AC 138 ms
53,884 KB
testcase_52 AC 141 ms
54,152 KB
testcase_53 AC 141 ms
54,044 KB
testcase_54 AC 145 ms
54,008 KB
testcase_55 AC 140 ms
54,148 KB
testcase_56 AC 143 ms
54,072 KB
testcase_57 AC 141 ms
53,812 KB
testcase_58 AC 139 ms
54,080 KB
testcase_59 AC 136 ms
54,200 KB
testcase_60 AC 140 ms
53,704 KB
testcase_61 AC 140 ms
54,028 KB
testcase_62 AC 140 ms
54,140 KB
testcase_63 AC 138 ms
54,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise57{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int n = sc.nextInt();

    int[] percentages = new int[n];

    for (int i = 0; i < n; i++){
      percentages[i] = sc.nextInt();
    }

    Arrays.sort(percentages);

    int gcm = 0;
    if (n < 2){
      gcm = 100;
    }else{
      gcm = ea(percentages[1], percentages[0]);
      for(int i = 2; i < n; i++){
        gcm = ea(percentages[i], gcm);
      }
    }

    System.out.println(100 / gcm);
  }
  private static int ea (int biggerNum, int smallerNum){
    int mod = biggerNum % smallerNum;
    if (mod == 0){
      return smallerNum;
    } else {
      return ea(smallerNum, mod);
    }
  }
}
0