結果

問題 No.191 供託金
ユーザー shinwisteriashinwisteria
提出日時 2018-02-21 22:37:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 430 bytes
コンパイル時間 2,961 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 41,864 KB
最終ジャッジ日時 2024-09-19 19:59:11
合計ジャッジ時間 6,853 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,200 KB
testcase_01 AC 115 ms
41,168 KB
testcase_02 AC 117 ms
40,972 KB
testcase_03 AC 115 ms
41,864 KB
testcase_04 AC 124 ms
41,464 KB
testcase_05 AC 127 ms
41,376 KB
testcase_06 AC 118 ms
41,112 KB
testcase_07 AC 119 ms
41,428 KB
testcase_08 AC 102 ms
40,012 KB
testcase_09 AC 126 ms
41,564 KB
testcase_10 AC 126 ms
41,412 KB
testcase_11 AC 122 ms
41,452 KB
testcase_12 AC 125 ms
41,612 KB
testcase_13 AC 117 ms
41,188 KB
testcase_14 AC 120 ms
41,480 KB
testcase_15 AC 126 ms
41,260 KB
testcase_16 AC 107 ms
39,928 KB
testcase_17 AC 121 ms
41,592 KB
testcase_18 AC 98 ms
39,556 KB
testcase_19 AC 121 ms
41,308 KB
testcase_20 AC 122 ms
41,204 KB
testcase_21 AC 117 ms
41,136 KB
testcase_22 AC 116 ms
41,216 KB
testcase_23 AC 126 ms
41,588 KB
testcase_24 AC 111 ms
41,524 KB
testcase_25 AC 102 ms
40,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con191 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt() , total = 0 , money = 0;;
		int[] C = new int[N];
		for(int i = 0;i < N;i++){
			C[i] = s.nextInt();
			total += C[i];
		}
		s.close();
		total /= 10;
		for(int i = 0;i < N;i++){
			if(C[i] <= total){
				money += 30;
			}
		}
		System.out.println(money);

	}

}
0