結果

問題 No.191 供託金
ユーザー ちよちゃんちよちゃん
提出日時 2016-05-25 17:08:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 458 bytes
コンパイル時間 3,366 ms
コンパイル使用メモリ 79,200 KB
実行使用メモリ 41,756 KB
最終ジャッジ日時 2024-11-16 22:16:42
合計ジャッジ時間 7,884 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,060 KB
testcase_01 AC 123 ms
41,320 KB
testcase_02 AC 125 ms
41,172 KB
testcase_03 AC 126 ms
41,112 KB
testcase_04 AC 135 ms
41,220 KB
testcase_05 AC 137 ms
41,484 KB
testcase_06 AC 122 ms
40,232 KB
testcase_07 AC 138 ms
41,432 KB
testcase_08 AC 128 ms
40,968 KB
testcase_09 AC 138 ms
40,996 KB
testcase_10 AC 136 ms
41,284 KB
testcase_11 AC 118 ms
40,064 KB
testcase_12 AC 133 ms
41,028 KB
testcase_13 AC 139 ms
41,416 KB
testcase_14 AC 138 ms
41,360 KB
testcase_15 AC 133 ms
41,352 KB
testcase_16 AC 134 ms
41,120 KB
testcase_17 AC 136 ms
41,184 KB
testcase_18 AC 128 ms
41,084 KB
testcase_19 AC 130 ms
41,304 KB
testcase_20 AC 116 ms
40,368 KB
testcase_21 AC 134 ms
41,756 KB
testcase_22 AC 136 ms
41,568 KB
testcase_23 AC 137 ms
41,352 KB
testcase_24 AC 127 ms
41,000 KB
testcase_25 AC 121 ms
41,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Yuki191 {
	
	public static void main(String[] args ) {
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		int c[] = new int[n];
		int total = 0;
		for (int i = 0; i < n; i++ ) {
			c[i] = scan.nextInt();
			total += c[i];
		}
		scan.close();
		int count = 0;
		for (int i = 0; i < n; i++ ) {
			if((total*0.1 >= c[i])) {
				count++;
			}
		}
		System.out.println(30*count);	
	}
}
0