結果

問題 No.191 供託金
ユーザー omc-testomc-test
提出日時 2016-08-05 10:00:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 448 bytes
コンパイル時間 2,865 ms
コンパイル使用メモリ 74,896 KB
実行使用メモリ 41,968 KB
最終ジャッジ日時 2024-04-28 08:44:30
合計ジャッジ時間 6,677 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,464 KB
testcase_01 AC 111 ms
41,772 KB
testcase_02 AC 100 ms
41,436 KB
testcase_03 AC 99 ms
41,868 KB
testcase_04 AC 122 ms
41,520 KB
testcase_05 AC 126 ms
41,676 KB
testcase_06 AC 108 ms
41,468 KB
testcase_07 AC 124 ms
41,616 KB
testcase_08 AC 110 ms
40,316 KB
testcase_09 AC 114 ms
41,652 KB
testcase_10 AC 120 ms
41,708 KB
testcase_11 AC 113 ms
41,624 KB
testcase_12 AC 104 ms
41,940 KB
testcase_13 AC 118 ms
41,212 KB
testcase_14 AC 130 ms
41,424 KB
testcase_15 AC 125 ms
41,612 KB
testcase_16 AC 116 ms
41,840 KB
testcase_17 AC 116 ms
41,360 KB
testcase_18 AC 115 ms
41,500 KB
testcase_19 AC 121 ms
41,500 KB
testcase_20 AC 121 ms
41,932 KB
testcase_21 AC 118 ms
41,968 KB
testcase_22 AC 116 ms
41,792 KB
testcase_23 AC 115 ms
41,504 KB
testcase_24 AC 108 ms
41,356 KB
testcase_25 AC 108 ms
41,564 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