結果

問題 No.191 供託金
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-01-24 14:44:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 415 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 77,784 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-11-16 22:00:31
合計ジャッジ時間 5,919 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,980 KB
testcase_01 AC 121 ms
41,112 KB
testcase_02 AC 103 ms
40,172 KB
testcase_03 AC 120 ms
41,196 KB
testcase_04 AC 127 ms
41,132 KB
testcase_05 AC 126 ms
41,592 KB
testcase_06 AC 120 ms
40,944 KB
testcase_07 AC 123 ms
40,864 KB
testcase_08 AC 117 ms
41,088 KB
testcase_09 AC 118 ms
41,080 KB
testcase_10 AC 130 ms
41,060 KB
testcase_11 AC 121 ms
41,152 KB
testcase_12 AC 116 ms
41,136 KB
testcase_13 AC 123 ms
41,048 KB
testcase_14 AC 133 ms
41,448 KB
testcase_15 AC 130 ms
41,108 KB
testcase_16 AC 126 ms
40,988 KB
testcase_17 AC 127 ms
40,968 KB
testcase_18 AC 116 ms
40,920 KB
testcase_19 AC 124 ms
41,300 KB
testcase_20 AC 129 ms
41,276 KB
testcase_21 AC 124 ms
40,960 KB
testcase_22 AC 123 ms
41,136 KB
testcase_23 AC 136 ms
41,116 KB
testcase_24 AC 127 ms
40,976 KB
testcase_25 AC 107 ms
39,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt();
		
		int[] C = new int[N];
		int sum = 0;
		
		for(int i = 0; i < N; i++) {
			C[i] = sc.nextInt();
			sum+=C[i];
		}
		
		sum = sum / 10;
		
		int cnt = 0;
		
		for(int i = 0; i < N; i++) {
			if(C[i] <= sum) {
				cnt+=30;
			}
		}
		
		System.out.println(cnt);
	}
}
0