結果

問題 No.191 供託金
ユーザー YOSHIYOSHI
提出日時 2021-03-04 20:41:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 635 bytes
コンパイル時間 3,598 ms
コンパイル使用メモリ 79,424 KB
実行使用メモリ 51,112 KB
最終ジャッジ日時 2024-10-05 09:04:19
合計ジャッジ時間 5,816 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,744 KB
testcase_01 AC 56 ms
50,364 KB
testcase_02 AC 56 ms
50,680 KB
testcase_03 AC 56 ms
50,868 KB
testcase_04 AC 56 ms
50,592 KB
testcase_05 AC 56 ms
51,020 KB
testcase_06 AC 56 ms
50,492 KB
testcase_07 AC 56 ms
50,688 KB
testcase_08 AC 64 ms
50,856 KB
testcase_09 AC 58 ms
51,072 KB
testcase_10 AC 57 ms
51,112 KB
testcase_11 AC 56 ms
50,568 KB
testcase_12 AC 55 ms
50,580 KB
testcase_13 AC 56 ms
50,592 KB
testcase_14 AC 56 ms
50,720 KB
testcase_15 AC 60 ms
50,728 KB
testcase_16 AC 58 ms
50,708 KB
testcase_17 AC 58 ms
50,656 KB
testcase_18 AC 57 ms
50,296 KB
testcase_19 AC 58 ms
50,984 KB
testcase_20 AC 57 ms
50,536 KB
testcase_21 AC 57 ms
51,044 KB
testcase_22 AC 56 ms
50,568 KB
testcase_23 AC 56 ms
50,584 KB
testcase_24 AC 58 ms
50,620 KB
testcase_25 AC 61 ms
50,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.stream.Stream;

public class No00000191_Main {

	public static void main(String[] args) throws IOException {

		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		int n = Integer.parseInt(br.readLine());

		int[] intArr = Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
		int line = Arrays.stream(intArr).sum() / 10;
		int cnt = 0;
		for(int i = 0; i < n; i++) {
			if(line >= intArr[i] ) {
				cnt++;
			}
		}
		System.out.println(cnt * 30);
	}
}
0