結果

問題 No.191 供託金
ユーザー k_kadorak_kadora
提出日時 2015-06-10 00:18:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 434 bytes
コンパイル時間 3,027 ms
コンパイル使用メモリ 78,540 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-11-16 20:41:14
合計ジャッジ時間 7,001 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,896 KB
testcase_01 AC 113 ms
41,020 KB
testcase_02 AC 108 ms
41,064 KB
testcase_03 AC 106 ms
40,756 KB
testcase_04 AC 119 ms
40,764 KB
testcase_05 AC 115 ms
41,032 KB
testcase_06 AC 109 ms
39,908 KB
testcase_07 AC 119 ms
41,320 KB
testcase_08 AC 100 ms
39,920 KB
testcase_09 AC 110 ms
39,860 KB
testcase_10 AC 118 ms
41,420 KB
testcase_11 AC 105 ms
40,040 KB
testcase_12 AC 105 ms
40,004 KB
testcase_13 AC 112 ms
39,960 KB
testcase_14 AC 119 ms
41,472 KB
testcase_15 AC 117 ms
40,216 KB
testcase_16 AC 113 ms
41,044 KB
testcase_17 AC 116 ms
41,272 KB
testcase_18 AC 101 ms
40,124 KB
testcase_19 AC 120 ms
41,140 KB
testcase_20 AC 113 ms
40,260 KB
testcase_21 AC 125 ms
40,972 KB
testcase_22 AC 109 ms
40,692 KB
testcase_23 AC 118 ms
41,280 KB
testcase_24 AC 111 ms
41,096 KB
testcase_25 AC 112 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

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(sum == 0){
				res = n*30;
				break;
			}
			if((double)c[i]  / (double)sum <= 0.1)res = res + 30;
		}
		System.out.println(res);
	}
}
0