結果

問題 No.191 供託金
ユーザー Lo_OTLo_OT
提出日時 2018-03-14 22:06:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 549 bytes
コンパイル時間 4,719 ms
コンパイル使用メモリ 73,776 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-05-07 02:46:46
合計ジャッジ時間 7,219 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,164 KB
testcase_01 AC 120 ms
39,944 KB
testcase_02 AC 134 ms
40,984 KB
testcase_03 AC 133 ms
40,840 KB
testcase_04 AC 140 ms
40,996 KB
testcase_05 AC 145 ms
41,212 KB
testcase_06 AC 143 ms
40,920 KB
testcase_07 AC 146 ms
41,640 KB
testcase_08 AC 136 ms
41,068 KB
testcase_09 AC 137 ms
41,196 KB
testcase_10 AC 142 ms
41,184 KB
testcase_11 AC 139 ms
41,196 KB
testcase_12 AC 135 ms
40,896 KB
testcase_13 AC 141 ms
41,184 KB
testcase_14 AC 142 ms
41,488 KB
testcase_15 AC 142 ms
41,048 KB
testcase_16 AC 140 ms
41,016 KB
testcase_17 AC 144 ms
41,168 KB
testcase_18 AC 135 ms
41,044 KB
testcase_19 AC 142 ms
41,112 KB
testcase_20 AC 140 ms
41,128 KB
testcase_21 AC 144 ms
41,408 KB
testcase_22 AC 143 ms
41,400 KB
testcase_23 AC 142 ms
41,236 KB
testcase_24 AC 139 ms
41,004 KB
testcase_25 AC 133 ms
41,128 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