結果
| 問題 |
No.339 何人が回答したのか
|
| コンテスト | |
| ユーザー |
kenji_shioya
|
| 提出日時 | 2016-06-04 06:10:53 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 737 bytes |
| コンパイル時間 | 3,740 ms |
| コンパイル使用メモリ | 75,516 KB |
| 実行使用メモリ | 54,432 KB |
| 最終ジャッジ日時 | 2024-10-08 07:44:39 |
| 合計ジャッジ時間 | 13,954 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 51 WA * 10 |
ソースコード
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);
}
}
}
kenji_shioya