結果

問題 No.191 供託金
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-07 14:32:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 862 bytes
コンパイル時間 3,428 ms
コンパイル使用メモリ 74,880 KB
実行使用メモリ 50,440 KB
最終ジャッジ日時 2024-11-17 04:26:25
合計ジャッジ時間 5,830 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,108 KB
testcase_01 AC 56 ms
50,052 KB
testcase_02 AC 56 ms
50,440 KB
testcase_03 AC 56 ms
50,420 KB
testcase_04 AC 58 ms
50,084 KB
testcase_05 AC 56 ms
49,896 KB
testcase_06 AC 56 ms
50,252 KB
testcase_07 AC 57 ms
50,240 KB
testcase_08 AC 56 ms
49,988 KB
testcase_09 AC 56 ms
50,156 KB
testcase_10 AC 57 ms
50,280 KB
testcase_11 AC 57 ms
49,948 KB
testcase_12 AC 57 ms
50,084 KB
testcase_13 AC 56 ms
50,184 KB
testcase_14 AC 56 ms
50,256 KB
testcase_15 AC 56 ms
49,736 KB
testcase_16 AC 56 ms
49,796 KB
testcase_17 AC 56 ms
50,424 KB
testcase_18 AC 57 ms
50,220 KB
testcase_19 AC 58 ms
50,208 KB
testcase_20 AC 56 ms
50,248 KB
testcase_21 AC 56 ms
50,328 KB
testcase_22 AC 57 ms
50,120 KB
testcase_23 AC 55 ms
50,024 KB
testcase_24 AC 56 ms
50,300 KB
testcase_25 AC 57 ms
50,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No191{
	public static void main(String[] args) {
		try{
			BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
			int N = Integer.parseInt(br.readLine());
			String[] temp = br.readLine().split(" ");
			int[] vote = new int[N];
			for(int i=0; i < N; i++)
				vote[i] = Integer.parseInt(temp[i]);
			System.out.println(notReturnDeposit(N,vote));
		}
		catch(IOException e){
			e.getStackTrace();
		}
		catch(NumberFormatException e){
			e.getStackTrace();
		}
	}
	
	public static int notReturnDeposit(int n, int[] a){
		int voteTotal = 0;
		int notReturnMoney = 0;
		for(int i=0; i < n; i++)
			voteTotal += a[i];
		for(int i=0; i < n; i++){
			if(a[i] <= (voteTotal/10))
				notReturnMoney += 30;
		}
		return notReturnMoney;
	}
	
}
0