結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,276 KB
testcase_01 AC 111 ms
40,668 KB
testcase_02 AC 103 ms
40,124 KB
testcase_03 AC 108 ms
41,348 KB
testcase_04 AC 129 ms
41,364 KB
testcase_05 AC 123 ms
41,592 KB
testcase_06 AC 112 ms
40,436 KB
testcase_07 AC 136 ms
41,856 KB
testcase_08 AC 120 ms
41,408 KB
testcase_09 AC 123 ms
41,228 KB
testcase_10 AC 127 ms
41,896 KB
testcase_11 AC 105 ms
40,480 KB
testcase_12 AC 109 ms
41,304 KB
testcase_13 AC 117 ms
41,300 KB
testcase_14 AC 126 ms
41,720 KB
testcase_15 AC 106 ms
40,144 KB
testcase_16 AC 108 ms
40,252 KB
testcase_17 AC 118 ms
41,084 KB
testcase_18 AC 101 ms
40,352 KB
testcase_19 AC 116 ms
41,228 KB
testcase_20 AC 120 ms
41,796 KB
testcase_21 AC 134 ms
41,884 KB
testcase_22 AC 118 ms
41,552 KB
testcase_23 AC 126 ms
41,388 KB
testcase_24 AC 116 ms
41,364 KB
testcase_25 AC 94 ms
39,960 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