結果

問題 No.191 供託金
ユーザー k_kadorak_kadora
提出日時 2015-06-10 00:16:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 385 bytes
コンパイル時間 3,047 ms
コンパイル使用メモリ 74,416 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-10-07 16:04:43
合計ジャッジ時間 7,163 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,028 KB
testcase_01 AC 116 ms
54,092 KB
testcase_02 AC 115 ms
53,844 KB
testcase_03 AC 123 ms
54,028 KB
testcase_04 AC 142 ms
54,200 KB
testcase_05 AC 132 ms
53,932 KB
testcase_06 AC 128 ms
54,176 KB
testcase_07 AC 130 ms
54,084 KB
testcase_08 AC 122 ms
53,988 KB
testcase_09 AC 113 ms
53,136 KB
testcase_10 AC 133 ms
54,080 KB
testcase_11 AC 128 ms
53,944 KB
testcase_12 AC 110 ms
52,840 KB
testcase_13 AC 132 ms
54,240 KB
testcase_14 AC 132 ms
41,300 KB
testcase_15 AC 129 ms
41,344 KB
testcase_16 AC 124 ms
41,272 KB
testcase_17 AC 125 ms
41,504 KB
testcase_18 AC 120 ms
41,260 KB
testcase_19 AC 124 ms
41,556 KB
testcase_20 AC 135 ms
41,600 KB
testcase_21 AC 134 ms
41,852 KB
testcase_22 AC 134 ms
41,768 KB
testcase_23 AC 130 ms
41,540 KB
testcase_24 AC 123 ms
41,592 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Kyotaku{
	public static void main(String arg[]){
		int n,sum=0,res=0;
		Scanner sc = new Scanner(System.in);
		n = sc.nextInt();
		int[] c = new int[n];
		for(int i = 0;i<n;i++){
			c[i] = sc.nextInt();
			sum = sum + c[i];
		}
		for(int i = 0;i<n;i++){
			if((double)c[i]  / (double)sum <= 0.1)res = res + 30;
		}
		System.out.println(res);
	}
}
0