結果

問題 No.339 何人が回答したのか
ユーザー spaciaspacia
提出日時 2016-06-08 17:46:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 1,000 ms
コード長 597 bytes
コンパイル時間 2,026 ms
コンパイル使用メモリ 74,020 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-10-09 03:13:50
合計ジャッジ時間 10,835 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,060 KB
testcase_01 AC 112 ms
40,960 KB
testcase_02 AC 110 ms
41,000 KB
testcase_03 AC 103 ms
39,764 KB
testcase_04 AC 106 ms
40,056 KB
testcase_05 AC 114 ms
41,128 KB
testcase_06 AC 110 ms
40,920 KB
testcase_07 AC 109 ms
40,908 KB
testcase_08 AC 99 ms
39,872 KB
testcase_09 AC 106 ms
40,740 KB
testcase_10 AC 99 ms
40,056 KB
testcase_11 AC 120 ms
41,024 KB
testcase_12 AC 127 ms
41,200 KB
testcase_13 AC 111 ms
40,212 KB
testcase_14 AC 113 ms
41,060 KB
testcase_15 AC 110 ms
41,244 KB
testcase_16 AC 101 ms
40,108 KB
testcase_17 AC 109 ms
41,072 KB
testcase_18 AC 108 ms
40,812 KB
testcase_19 AC 99 ms
40,232 KB
testcase_20 AC 126 ms
40,992 KB
testcase_21 AC 118 ms
40,704 KB
testcase_22 AC 116 ms
41,012 KB
testcase_23 AC 97 ms
39,920 KB
testcase_24 AC 110 ms
40,884 KB
testcase_25 AC 100 ms
40,164 KB
testcase_26 AC 99 ms
39,916 KB
testcase_27 AC 109 ms
41,000 KB
testcase_28 AC 101 ms
40,080 KB
testcase_29 AC 115 ms
41,012 KB
testcase_30 AC 100 ms
39,868 KB
testcase_31 AC 99 ms
39,980 KB
testcase_32 AC 110 ms
41,140 KB
testcase_33 AC 144 ms
41,132 KB
testcase_34 AC 108 ms
39,956 KB
testcase_35 AC 118 ms
41,052 KB
testcase_36 AC 116 ms
41,148 KB
testcase_37 AC 110 ms
40,996 KB
testcase_38 AC 102 ms
40,136 KB
testcase_39 AC 111 ms
41,012 KB
testcase_40 AC 113 ms
40,884 KB
testcase_41 AC 105 ms
40,628 KB
testcase_42 AC 108 ms
40,520 KB
testcase_43 AC 118 ms
41,344 KB
testcase_44 AC 120 ms
40,892 KB
testcase_45 AC 121 ms
41,024 KB
testcase_46 AC 116 ms
41,212 KB
testcase_47 AC 101 ms
39,764 KB
testcase_48 AC 113 ms
41,216 KB
testcase_49 AC 114 ms
40,928 KB
testcase_50 AC 115 ms
41,120 KB
testcase_51 AC 105 ms
40,108 KB
testcase_52 AC 117 ms
41,084 KB
testcase_53 AC 105 ms
40,188 KB
testcase_54 AC 104 ms
40,164 KB
testcase_55 AC 108 ms
40,596 KB
testcase_56 AC 112 ms
40,908 KB
testcase_57 AC 113 ms
41,028 KB
testcase_58 AC 121 ms
41,040 KB
testcase_59 AC 116 ms
40,880 KB
testcase_60 AC 107 ms
40,080 KB
testcase_61 AC 116 ms
40,908 KB
testcase_62 AC 103 ms
39,768 KB
testcase_63 AC 105 ms
40,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main (String[] args) {

		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt();
		int[] nums = new int[n];
		for (int i = 0; i < n; i++)
			nums[i] = sc.nextInt();

		for (int divisor = 100; divisor >= 1; divisor--) {
			boolean flg = true;
			for (int ni = 0; ni < n; ni++) {
				if (nums[ni] % divisor != 0) {
					flg = false;
					break;
				}
			}
			if (flg) {
				int sum = 0;
				for (int ni = 0; ni < n; ni++)
					sum += nums[ni] / divisor;
				System.out.println(sum);
				break;
			}
		}

		sc.close();

	}

}
0