結果

問題 No.191 供託金
ユーザー ffmm00ffmm00
提出日時 2015-06-03 18:53:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 414 bytes
コンパイル時間 3,603 ms
コンパイル使用メモリ 74,892 KB
実行使用メモリ 41,552 KB
最終ジャッジ日時 2024-11-16 20:38:57
合計ジャッジ時間 8,267 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,188 KB
testcase_01 AC 132 ms
41,048 KB
testcase_02 AC 131 ms
41,168 KB
testcase_03 AC 136 ms
41,388 KB
testcase_04 AC 144 ms
41,516 KB
testcase_05 AC 147 ms
41,268 KB
testcase_06 AC 146 ms
41,388 KB
testcase_07 AC 146 ms
41,408 KB
testcase_08 AC 137 ms
41,112 KB
testcase_09 AC 139 ms
41,232 KB
testcase_10 AC 142 ms
41,124 KB
testcase_11 AC 142 ms
41,552 KB
testcase_12 AC 141 ms
41,116 KB
testcase_13 AC 144 ms
41,248 KB
testcase_14 AC 145 ms
41,268 KB
testcase_15 AC 141 ms
41,372 KB
testcase_16 AC 140 ms
40,968 KB
testcase_17 AC 144 ms
41,408 KB
testcase_18 AC 136 ms
41,360 KB
testcase_19 AC 144 ms
41,480 KB
testcase_20 AC 140 ms
41,104 KB
testcase_21 AC 147 ms
41,508 KB
testcase_22 AC 144 ms
41,440 KB
testcase_23 AC 145 ms
41,388 KB
testcase_24 AC 141 ms
41,456 KB
testcase_25 AC 135 ms
40,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N191 {

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

		int N = sca.nextInt(); // V > N/10
		int v = 0;
		int M = 0;
		int A = 0;

		int[] C = new int[N];

		for (int i = 0; i < N; i++) {
			C[i] = sca.nextInt();
			M += C[i];
		}

		for (int i = 0; i < N; i++) {
			if (C[i] <= (M / 10))
				A += 30;
		}

		System.out.println(A);

	}
}
0