結果

問題 No.191 供託金
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-30 11:37:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 859 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 74,436 KB
実行使用メモリ 50,392 KB
最終ジャッジ日時 2024-09-13 23:31:54
合計ジャッジ時間 4,552 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
49,864 KB
testcase_01 AC 53 ms
50,296 KB
testcase_02 AC 54 ms
49,772 KB
testcase_03 AC 55 ms
49,936 KB
testcase_04 AC 54 ms
50,392 KB
testcase_05 AC 56 ms
49,764 KB
testcase_06 AC 54 ms
50,320 KB
testcase_07 AC 53 ms
50,128 KB
testcase_08 AC 54 ms
49,828 KB
testcase_09 AC 54 ms
50,116 KB
testcase_10 AC 54 ms
50,040 KB
testcase_11 AC 54 ms
50,196 KB
testcase_12 AC 53 ms
50,292 KB
testcase_13 AC 54 ms
50,136 KB
testcase_14 AC 53 ms
50,116 KB
testcase_15 AC 53 ms
50,288 KB
testcase_16 AC 53 ms
49,876 KB
testcase_17 AC 54 ms
49,772 KB
testcase_18 AC 54 ms
50,168 KB
testcase_19 AC 54 ms
50,360 KB
testcase_20 AC 54 ms
49,936 KB
testcase_21 AC 54 ms
50,328 KB
testcase_22 AC 53 ms
49,764 KB
testcase_23 AC 53 ms
50,284 KB
testcase_24 AC 54 ms
50,216 KB
testcase_25 AC 53 ms
50,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        int N = Integer.parseInt(reader.readLine());
        String[] inputs = reader.readLine().split(" ");
        long[] votes = new long[N];
        long sum = 0;
        for (int i = 0; i < N; i++) {
            long v = Long.parseLong(inputs[i]);
            votes[i] = v;
            sum += v;
        }
        double criteria = sum/ 10.0;
        long money = 0;
        for (int i = 0; i < N; i++) {
            if (votes[i] > criteria) {

            } else {
                money += 30;
            }
        }
        System.out.println(money);
    }
}
0