結果

問題 No.191 供託金
ユーザー koukonkokoukonko
提出日時 2015-12-14 15:36:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 690 bytes
コンパイル時間 3,789 ms
コンパイル使用メモリ 73,316 KB
実行使用メモリ 37,072 KB
最終ジャッジ日時 2024-11-16 21:51:42
合計ジャッジ時間 5,644 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,024 KB
testcase_01 AC 44 ms
36,988 KB
testcase_02 AC 45 ms
36,920 KB
testcase_03 AC 46 ms
36,620 KB
testcase_04 AC 49 ms
36,788 KB
testcase_05 AC 46 ms
36,752 KB
testcase_06 AC 45 ms
36,616 KB
testcase_07 AC 45 ms
36,616 KB
testcase_08 AC 48 ms
36,912 KB
testcase_09 AC 49 ms
36,364 KB
testcase_10 AC 47 ms
36,752 KB
testcase_11 AC 47 ms
36,764 KB
testcase_12 AC 47 ms
36,444 KB
testcase_13 AC 46 ms
36,812 KB
testcase_14 AC 46 ms
36,468 KB
testcase_15 AC 46 ms
36,756 KB
testcase_16 AC 44 ms
36,912 KB
testcase_17 AC 46 ms
36,472 KB
testcase_18 AC 46 ms
36,916 KB
testcase_19 AC 47 ms
36,936 KB
testcase_20 AC 46 ms
37,072 KB
testcase_21 AC 46 ms
36,448 KB
testcase_22 AC 45 ms
36,972 KB
testcase_23 AC 45 ms
36,760 KB
testcase_24 AC 44 ms
36,772 KB
testcase_25 AC 45 ms
36,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader read = new BufferedReader(new InputStreamReader(System.in));
		try {
			int N = Integer.parseInt(read.readLine());
			String[] box = read.readLine().split(" ");
			int[] v = new int[N];
			int total = 0;
			for (int i = 0; i < N; ++i) {
				v[i] = Integer.parseInt(box[i]);
				total += v[i];
			}

			int border = total / 10;
			int count = 0;
			for (int i = 0; i < N; ++i) {
				if (v[i] <= border) {
					++count;
				}
			}

			System.out.println(count * 30);

		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}
0