結果

問題 No.191 供託金
ユーザー taketake
提出日時 2016-07-10 15:52:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 1,070 bytes
コンパイル時間 2,307 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-11-16 22:28:10
合計ジャッジ時間 5,942 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
39,880 KB
testcase_01 AC 113 ms
39,908 KB
testcase_02 AC 119 ms
41,000 KB
testcase_03 AC 117 ms
41,156 KB
testcase_04 AC 129 ms
41,408 KB
testcase_05 AC 126 ms
41,308 KB
testcase_06 AC 127 ms
41,228 KB
testcase_07 AC 129 ms
40,976 KB
testcase_08 AC 125 ms
40,968 KB
testcase_09 AC 129 ms
41,124 KB
testcase_10 AC 131 ms
41,260 KB
testcase_11 AC 114 ms
40,240 KB
testcase_12 AC 122 ms
41,284 KB
testcase_13 AC 122 ms
41,344 KB
testcase_14 AC 126 ms
40,972 KB
testcase_15 AC 132 ms
41,108 KB
testcase_16 AC 130 ms
41,256 KB
testcase_17 AC 123 ms
40,968 KB
testcase_18 AC 117 ms
41,208 KB
testcase_19 AC 131 ms
41,376 KB
testcase_20 AC 114 ms
39,792 KB
testcase_21 AC 133 ms
41,132 KB
testcase_22 AC 125 ms
40,900 KB
testcase_23 AC 134 ms
41,360 KB
testcase_24 AC 125 ms
40,152 KB
testcase_25 AC 104 ms
39,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	
	public static void main (String[] args) throws java.lang.Exception
	{

	    Scanner sc = new Scanner(System.in);

	    // N(立候補者人数)
	    int n = sc.nextInt();
	    //System.out.println("n=" + n);

	    // 票合計
		int hg = 0;
		
	    // 票配列
	    int hs[];
        hs = new int[n]; 

        int index = 0;
	    while((sc.hasNext()) && (index < n + 1)){
	        int s = sc.nextInt();
	        hs[index] = s;
	        //System.out.println("hs[index]=" + hs[index]);
            hg += s;
		    index++;
	    }
    
	    //System.out.println("hg=" + hg);
	    
	    // 票基準
		int hk = (int)(hg * 0.1);
		//System.out.println("hk=" + hk);
		
		// 供託金合計
		int kg = 0;
	    for (int i = 0; i < n; i++){
	    	// 票基準以下は、供託金となる
		  	if (hs[i] <= hk ) {
		  		kg += 30;
		  	}
		}
		
		System.out.println(kg);
	}
	
}
0