結果

問題 No.191 供託金
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 17:50:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 417 bytes
コンパイル時間 2,147 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 54,452 KB
最終ジャッジ日時 2024-10-07 18:13:32
合計ジャッジ時間 6,367 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,900 KB
testcase_01 AC 110 ms
52,976 KB
testcase_02 AC 127 ms
54,000 KB
testcase_03 AC 128 ms
53,836 KB
testcase_04 AC 140 ms
54,452 KB
testcase_05 AC 139 ms
54,236 KB
testcase_06 AC 139 ms
54,016 KB
testcase_07 AC 139 ms
54,100 KB
testcase_08 AC 131 ms
54,260 KB
testcase_09 AC 140 ms
54,100 KB
testcase_10 AC 137 ms
54,248 KB
testcase_11 AC 134 ms
54,112 KB
testcase_12 AC 124 ms
54,172 KB
testcase_13 AC 139 ms
53,812 KB
testcase_14 AC 140 ms
54,272 KB
testcase_15 AC 133 ms
54,060 KB
testcase_16 AC 139 ms
54,116 KB
testcase_17 AC 139 ms
54,124 KB
testcase_18 AC 130 ms
54,248 KB
testcase_19 AC 130 ms
53,732 KB
testcase_20 AC 134 ms
54,032 KB
testcase_21 AC 137 ms
53,992 KB
testcase_22 AC 137 ms
54,276 KB
testcase_23 AC 132 ms
54,224 KB
testcase_24 AC 126 ms
54,012 KB
testcase_25 AC 120 ms
53,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int[] ar = new int[n];
		int standard = 0;
		for (int i=0; i<n; i++) {
			ar[i] = sc.nextInt();
			standard += ar[i];
		}
		standard /= 10;
		
		int money = 0;
		for (int i=0; i<n; i++) {
			if (ar[i]<=standard) {money++;}
		}
		System.out.println(money*30);
	}
}
0