結果

問題 No.191 供託金
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-03-30 12:06:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 435 bytes
コンパイル時間 2,299 ms
コンパイル使用メモリ 74,824 KB
実行使用メモリ 54,108 KB
最終ジャッジ日時 2024-11-16 22:05:58
合計ジャッジ時間 6,575 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,904 KB
testcase_01 AC 131 ms
54,108 KB
testcase_02 AC 133 ms
54,044 KB
testcase_03 AC 131 ms
53,924 KB
testcase_04 AC 142 ms
53,904 KB
testcase_05 AC 144 ms
53,824 KB
testcase_06 AC 143 ms
53,952 KB
testcase_07 AC 142 ms
53,924 KB
testcase_08 AC 131 ms
41,368 KB
testcase_09 AC 132 ms
41,088 KB
testcase_10 AC 140 ms
41,076 KB
testcase_11 AC 132 ms
41,072 KB
testcase_12 AC 130 ms
41,056 KB
testcase_13 AC 140 ms
41,132 KB
testcase_14 AC 141 ms
41,188 KB
testcase_15 AC 139 ms
41,204 KB
testcase_16 AC 142 ms
41,308 KB
testcase_17 AC 141 ms
41,472 KB
testcase_18 AC 135 ms
41,364 KB
testcase_19 AC 140 ms
41,272 KB
testcase_20 AC 137 ms
41,360 KB
testcase_21 AC 142 ms
41,088 KB
testcase_22 AC 144 ms
41,504 KB
testcase_23 AC 141 ms
40,960 KB
testcase_24 AC 139 ms
41,272 KB
testcase_25 AC 127 ms
41,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
	final static int K = 30; //供託金

	public static void main(String[] args) throws Exception {
		Scanner in = new Scanner(System.in);
		int n = in.nextInt();
		int sum = 0;
		int ans = 0;
		int[] c = new int[n];
		for(int i=0; i<n; i++) {
			c[i] = in.nextInt();
			sum += c[i];
		}

		for(int i=0; i<n; i++) {
			if(c[i] <= sum / 10) {
				ans += K;
			}
		}

		System.out.println(ans);
	}
}
0