結果

問題 No.191 供託金
ユーザー SuunnSuunn
提出日時 2018-11-22 09:19:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 5,000 ms
コード長 396 bytes
コンパイル時間 2,484 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 41,468 KB
最終ジャッジ日時 2024-12-24 16:15:28
合計ジャッジ時間 7,594 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
40,936 KB
testcase_01 AC 149 ms
40,968 KB
testcase_02 AC 143 ms
41,252 KB
testcase_03 AC 141 ms
41,048 KB
testcase_04 AC 168 ms
41,296 KB
testcase_05 AC 157 ms
41,336 KB
testcase_06 AC 156 ms
41,256 KB
testcase_07 AC 156 ms
41,244 KB
testcase_08 AC 145 ms
41,224 KB
testcase_09 AC 154 ms
41,408 KB
testcase_10 AC 159 ms
41,104 KB
testcase_11 AC 159 ms
41,332 KB
testcase_12 AC 151 ms
41,164 KB
testcase_13 AC 156 ms
40,960 KB
testcase_14 AC 165 ms
41,128 KB
testcase_15 AC 139 ms
40,316 KB
testcase_16 AC 156 ms
40,956 KB
testcase_17 AC 161 ms
41,284 KB
testcase_18 AC 148 ms
41,208 KB
testcase_19 AC 157 ms
41,120 KB
testcase_20 AC 156 ms
41,208 KB
testcase_21 AC 162 ms
41,288 KB
testcase_22 AC 161 ms
41,192 KB
testcase_23 AC 157 ms
41,404 KB
testcase_24 AC 154 ms
41,468 KB
testcase_25 AC 148 ms
41,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt();
		int[] C = new int[N];
		int sum = 0;
		for(int i=0;i<N;i++){
			C[i] = sc.nextInt();
			sum += C[i];
		}
		int ans = 0;
		for(int i=0;i<N;i++){
			if(C[i]*10<=sum){
				ans += 30;
			}
		}System.out.println(ans);
	}
	

}
0