結果

問題 No.339 何人が回答したのか
ユーザー YamaKasaYamaKasa
提出日時 2018-09-16 17:42:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 891 bytes
コンパイル時間 2,255 ms
コンパイル使用メモリ 80,476 KB
実行使用メモリ 41,800 KB
最終ジャッジ日時 2024-07-18 07:25:50
合計ジャッジ時間 10,850 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,800 KB
testcase_01 AC 107 ms
41,380 KB
testcase_02 AC 117 ms
41,152 KB
testcase_03 AC 119 ms
41,192 KB
testcase_04 AC 116 ms
40,996 KB
testcase_05 AC 105 ms
40,232 KB
testcase_06 AC 124 ms
41,316 KB
testcase_07 AC 113 ms
41,272 KB
testcase_08 AC 102 ms
40,096 KB
testcase_09 AC 112 ms
41,020 KB
testcase_10 AC 116 ms
40,400 KB
testcase_11 AC 120 ms
41,140 KB
testcase_12 AC 114 ms
40,408 KB
testcase_13 AC 118 ms
40,356 KB
testcase_14 AC 100 ms
40,216 KB
testcase_15 AC 100 ms
40,060 KB
testcase_16 AC 105 ms
40,192 KB
testcase_17 AC 106 ms
39,940 KB
testcase_18 AC 103 ms
40,116 KB
testcase_19 AC 119 ms
41,324 KB
testcase_20 AC 115 ms
41,140 KB
testcase_21 AC 115 ms
41,384 KB
testcase_22 AC 114 ms
40,640 KB
testcase_23 AC 120 ms
41,156 KB
testcase_24 AC 117 ms
41,396 KB
testcase_25 AC 120 ms
41,296 KB
testcase_26 AC 115 ms
41,220 KB
testcase_27 AC 117 ms
41,144 KB
testcase_28 AC 116 ms
41,108 KB
testcase_29 AC 103 ms
40,344 KB
testcase_30 AC 118 ms
41,304 KB
testcase_31 AC 119 ms
41,172 KB
testcase_32 AC 115 ms
41,004 KB
testcase_33 AC 104 ms
40,088 KB
testcase_34 AC 126 ms
41,252 KB
testcase_35 AC 121 ms
41,420 KB
testcase_36 AC 103 ms
39,844 KB
testcase_37 AC 123 ms
41,152 KB
testcase_38 AC 116 ms
41,248 KB
testcase_39 AC 110 ms
40,764 KB
testcase_40 AC 124 ms
41,228 KB
testcase_41 AC 126 ms
41,400 KB
testcase_42 AC 116 ms
41,168 KB
testcase_43 AC 107 ms
40,892 KB
testcase_44 AC 103 ms
39,864 KB
testcase_45 AC 118 ms
41,284 KB
testcase_46 AC 105 ms
40,480 KB
testcase_47 AC 103 ms
40,032 KB
testcase_48 AC 112 ms
41,340 KB
testcase_49 AC 105 ms
40,264 KB
testcase_50 AC 105 ms
40,116 KB
testcase_51 AC 113 ms
41,228 KB
testcase_52 AC 103 ms
40,380 KB
testcase_53 AC 111 ms
41,176 KB
testcase_54 AC 116 ms
40,888 KB
testcase_55 AC 112 ms
41,264 KB
testcase_56 AC 103 ms
40,084 KB
testcase_57 AC 116 ms
41,368 KB
testcase_58 AC 120 ms
41,364 KB
testcase_59 AC 114 ms
41,136 KB
testcase_60 AC 100 ms
40,196 KB
testcase_61 AC 111 ms
40,760 KB
testcase_62 AC 105 ms
40,284 KB
testcase_63 AC 114 ms
41,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		int[]A = new int[n];
		int min = Integer.MAX_VALUE;
		for(int i = 0; i < n; i++) {
			int t = scan.nextInt();
			A[i] = t;
			if(min > t) {
				min = t;
			}
		}
		scan.close();
		List<Integer> list = new ArrayList<Integer>();
		for(int i = 2; i <= min; i++) {
			if(min % i == 0) {
				list.add(i);
			}
		}
		for(int i = list.size() - 1; i >= 0; i--) {
			int k = list.get(i);
			boolean flag = true;
			for(int j = 0; j < n; j++) {
				if(A[j] % k != 0) {
					flag = false;
					break;
				}
			}
			if(flag) {
				for(int j = 0; j < n; j++) {
					A[j] = A[j] / k;
				}
			}
		}
		int cnt = 0;
		for(int i = 0; i < n; i++) {
			cnt += A[i];
		}
		System.out.println(cnt);
	}
}
0