結果

問題 No.191 供託金
ユーザー len_proglen_prog
提出日時 2016-06-08 10:57:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 532 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 74,668 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-11-16 22:21:46
合計ジャッジ時間 6,264 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,092 KB
testcase_01 AC 116 ms
41,064 KB
testcase_02 AC 104 ms
39,832 KB
testcase_03 AC 114 ms
40,784 KB
testcase_04 AC 129 ms
41,132 KB
testcase_05 AC 121 ms
40,880 KB
testcase_06 AC 109 ms
39,792 KB
testcase_07 AC 124 ms
41,572 KB
testcase_08 AC 111 ms
40,540 KB
testcase_09 AC 113 ms
40,940 KB
testcase_10 AC 129 ms
41,560 KB
testcase_11 AC 104 ms
39,916 KB
testcase_12 AC 113 ms
40,844 KB
testcase_13 AC 112 ms
40,208 KB
testcase_14 AC 131 ms
41,360 KB
testcase_15 AC 128 ms
40,964 KB
testcase_16 AC 128 ms
41,232 KB
testcase_17 AC 129 ms
40,960 KB
testcase_18 AC 116 ms
40,884 KB
testcase_19 AC 124 ms
41,180 KB
testcase_20 AC 110 ms
40,064 KB
testcase_21 AC 122 ms
41,232 KB
testcase_22 AC 127 ms
41,456 KB
testcase_23 AC 127 ms
41,360 KB
testcase_24 AC 118 ms
40,840 KB
testcase_25 AC 115 ms
40,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int[] voteobNum = new int[N];
		int voteTotal = 0;

		for(int i = 0; i < N; i++){
			voteobNum[i] = scan.nextInt();
			voteTotal += voteobNum[i];
		}

		int evaluationCriteria = voteTotal / 10;
		int depositTotal = 0;

		for(int i = 0; i < N; i++){
			if(voteobNum[i] <= evaluationCriteria) depositTotal += 30;
		}

		System.out.println(depositTotal);
		scan.close();
	}

}
0