結果

問題 No.191 供託金
ユーザー m2543315647m2543315647
提出日時 2015-05-14 11:38:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 344 bytes
コンパイル時間 3,324 ms
コンパイル使用メモリ 74,784 KB
実行使用メモリ 41,952 KB
最終ジャッジ日時 2024-04-28 07:11:31
合計ジャッジ時間 8,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,484 KB
testcase_01 AC 115 ms
40,168 KB
testcase_02 AC 128 ms
41,536 KB
testcase_03 AC 131 ms
40,984 KB
testcase_04 AC 139 ms
41,480 KB
testcase_05 AC 138 ms
41,580 KB
testcase_06 AC 124 ms
40,088 KB
testcase_07 AC 138 ms
41,288 KB
testcase_08 AC 129 ms
41,128 KB
testcase_09 AC 132 ms
41,120 KB
testcase_10 AC 140 ms
40,956 KB
testcase_11 AC 140 ms
41,864 KB
testcase_12 AC 121 ms
40,344 KB
testcase_13 AC 137 ms
41,468 KB
testcase_14 AC 143 ms
41,708 KB
testcase_15 AC 144 ms
41,604 KB
testcase_16 AC 138 ms
41,528 KB
testcase_17 AC 140 ms
41,480 KB
testcase_18 AC 123 ms
41,176 KB
testcase_19 AC 139 ms
41,360 KB
testcase_20 AC 140 ms
41,440 KB
testcase_21 AC 141 ms
41,952 KB
testcase_22 AC 135 ms
41,168 KB
testcase_23 AC 145 ms
41,688 KB
testcase_24 AC 131 ms
41,124 KB
testcase_25 AC 130 ms
41,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No191 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n=sc.nextInt();
		int sum=0,count=0;
		int[] c=new int[n];
		for(int i=0;i<n;i++){
			c[i]=sc.nextInt();
			sum+=c[i];
		}
		for(int i=0;i<n;i++)
			if(sum/10>=c[i])count++;
		System.out.println(count*30);
	}
}
0