結果

問題 No.191 供託金
ユーザー omc-testomc-test
提出日時 2016-08-05 10:00:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 448 bytes
コンパイル時間 3,290 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 41,496 KB
最終ジャッジ日時 2024-11-16 22:32:38
合計ジャッジ時間 7,221 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,256 KB
testcase_01 AC 126 ms
41,304 KB
testcase_02 AC 124 ms
41,300 KB
testcase_03 AC 121 ms
41,040 KB
testcase_04 AC 131 ms
41,268 KB
testcase_05 AC 122 ms
41,244 KB
testcase_06 AC 125 ms
40,968 KB
testcase_07 AC 133 ms
41,356 KB
testcase_08 AC 126 ms
41,212 KB
testcase_09 AC 130 ms
41,088 KB
testcase_10 AC 136 ms
41,128 KB
testcase_11 AC 123 ms
41,360 KB
testcase_12 AC 119 ms
41,152 KB
testcase_13 AC 129 ms
41,496 KB
testcase_14 AC 122 ms
41,176 KB
testcase_15 AC 125 ms
40,500 KB
testcase_16 AC 116 ms
40,132 KB
testcase_17 AC 124 ms
41,192 KB
testcase_18 AC 119 ms
40,848 KB
testcase_19 AC 130 ms
41,340 KB
testcase_20 AC 129 ms
41,412 KB
testcase_21 AC 125 ms
41,128 KB
testcase_22 AC 123 ms
41,096 KB
testcase_23 AC 130 ms
41,048 KB
testcase_24 AC 131 ms
41,204 KB
testcase_25 AC 121 ms
41,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class No0191 {
	public static void main(String[] args) {
		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];
		}
		Arrays.sort(c);
		int kyou = 0;
		for(int i=0; i<n; i++){
			if(c[i] <= sum/10){
				kyou += 30;
			}else{
				break;
			}
		}
		System.out.println(kyou);
	}
}
0