結果

問題 No.339 何人が回答したのか
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-04 06:10:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 737 bytes
コンパイル時間 3,740 ms
コンパイル使用メモリ 75,516 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-10-08 07:44:39
合計ジャッジ時間 13,954 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,184 KB
testcase_01 AC 139 ms
54,360 KB
testcase_02 AC 133 ms
54,136 KB
testcase_03 AC 133 ms
54,064 KB
testcase_04 AC 135 ms
53,896 KB
testcase_05 AC 137 ms
54,092 KB
testcase_06 WA -
testcase_07 AC 133 ms
54,212 KB
testcase_08 AC 131 ms
53,972 KB
testcase_09 AC 137 ms
54,176 KB
testcase_10 AC 135 ms
54,112 KB
testcase_11 AC 139 ms
54,048 KB
testcase_12 WA -
testcase_13 AC 136 ms
54,084 KB
testcase_14 AC 135 ms
53,928 KB
testcase_15 AC 139 ms
53,984 KB
testcase_16 AC 135 ms
54,104 KB
testcase_17 AC 119 ms
53,128 KB
testcase_18 WA -
testcase_19 AC 134 ms
54,148 KB
testcase_20 AC 132 ms
53,972 KB
testcase_21 AC 135 ms
54,120 KB
testcase_22 AC 136 ms
54,060 KB
testcase_23 AC 136 ms
54,320 KB
testcase_24 AC 133 ms
54,124 KB
testcase_25 WA -
testcase_26 AC 135 ms
54,300 KB
testcase_27 AC 132 ms
53,928 KB
testcase_28 AC 134 ms
54,384 KB
testcase_29 WA -
testcase_30 AC 135 ms
53,924 KB
testcase_31 AC 136 ms
54,188 KB
testcase_32 AC 136 ms
53,904 KB
testcase_33 AC 133 ms
53,988 KB
testcase_34 AC 136 ms
53,708 KB
testcase_35 AC 129 ms
54,124 KB
testcase_36 WA -
testcase_37 AC 134 ms
54,120 KB
testcase_38 AC 129 ms
53,924 KB
testcase_39 AC 132 ms
53,808 KB
testcase_40 AC 130 ms
53,788 KB
testcase_41 AC 133 ms
54,196 KB
testcase_42 AC 136 ms
54,000 KB
testcase_43 AC 133 ms
54,188 KB
testcase_44 AC 133 ms
54,056 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 137 ms
53,856 KB
testcase_48 AC 137 ms
53,784 KB
testcase_49 AC 134 ms
54,224 KB
testcase_50 AC 133 ms
53,928 KB
testcase_51 AC 135 ms
54,368 KB
testcase_52 AC 135 ms
53,932 KB
testcase_53 AC 133 ms
53,976 KB
testcase_54 AC 134 ms
54,040 KB
testcase_55 WA -
testcase_56 AC 137 ms
54,096 KB
testcase_57 WA -
testcase_58 AC 136 ms
54,272 KB
testcase_59 AC 133 ms
53,812 KB
testcase_60 AC 132 ms
54,036 KB
testcase_61 AC 132 ms
54,032 KB
testcase_62 AC 132 ms
54,168 KB
testcase_63 AC 133 ms
54,032 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[2], 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