結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
40,032 KB
testcase_01 AC 108 ms
41,064 KB
testcase_02 AC 121 ms
41,204 KB
testcase_03 AC 118 ms
41,116 KB
testcase_04 AC 140 ms
41,120 KB
testcase_05 AC 126 ms
41,208 KB
testcase_06 AC 118 ms
39,976 KB
testcase_07 AC 129 ms
41,280 KB
testcase_08 AC 119 ms
41,296 KB
testcase_09 AC 127 ms
41,004 KB
testcase_10 AC 128 ms
41,408 KB
testcase_11 AC 119 ms
40,576 KB
testcase_12 AC 113 ms
41,136 KB
testcase_13 AC 116 ms
40,908 KB
testcase_14 AC 131 ms
41,352 KB
testcase_15 AC 114 ms
40,168 KB
testcase_16 AC 118 ms
39,788 KB
testcase_17 AC 124 ms
41,384 KB
testcase_18 AC 118 ms
41,012 KB
testcase_19 AC 128 ms
41,304 KB
testcase_20 AC 127 ms
41,332 KB
testcase_21 AC 128 ms
41,404 KB
testcase_22 AC 130 ms
41,104 KB
testcase_23 AC 132 ms
41,260 KB
testcase_24 AC 102 ms
40,072 KB
testcase_25 AC 110 ms
41,076 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