結果

問題 No.339 何人が回答したのか
ユーザー kenji_shioya
提出日時 2016-06-04 06:13:35
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 61
権限があれば一括ダウンロードができます

ソースコード

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