結果

問題 No.191 供託金
ユーザー Lo_OTLo_OT
提出日時 2018-03-14 22:06:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 549 bytes
コンパイル時間 2,751 ms
コンパイル使用メモリ 75,024 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-11-29 15:14:15
合計ジャッジ時間 7,436 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,500 KB
testcase_01 AC 128 ms
41,140 KB
testcase_02 AC 128 ms
41,296 KB
testcase_03 AC 129 ms
41,144 KB
testcase_04 AC 141 ms
41,296 KB
testcase_05 AC 140 ms
41,536 KB
testcase_06 AC 139 ms
41,324 KB
testcase_07 AC 141 ms
41,612 KB
testcase_08 AC 130 ms
41,156 KB
testcase_09 AC 134 ms
41,380 KB
testcase_10 AC 141 ms
41,308 KB
testcase_11 AC 125 ms
40,336 KB
testcase_12 AC 131 ms
41,136 KB
testcase_13 AC 139 ms
41,360 KB
testcase_14 AC 143 ms
41,120 KB
testcase_15 AC 138 ms
41,112 KB
testcase_16 AC 137 ms
41,364 KB
testcase_17 AC 140 ms
41,220 KB
testcase_18 AC 133 ms
41,188 KB
testcase_19 AC 134 ms
41,240 KB
testcase_20 AC 131 ms
40,980 KB
testcase_21 AC 139 ms
41,160 KB
testcase_22 AC 136 ms
41,036 KB
testcase_23 AC 138 ms
41,556 KB
testcase_24 AC 134 ms
41,088 KB
testcase_25 AC 115 ms
39,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner in = new Scanner(System.in);
        int loops = in.nextInt();
        int sum = 0;
        int[] arr = new int[101];
        
        for(int i=0; i<loops; i++){
            arr[i] += in.nextInt();
            sum += arr[i]; 
        }
        int money = sum / 10;
        int count = 0;
        for(int i=0; i<loops; i++){
            if(arr[i] <= money) count++;
        }
        System.out.println(count * 30);
    }
}
0