結果

問題 No.191 供託金
ユーザー dazydazy
提出日時 2017-02-23 15:00:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 532 bytes
コンパイル時間 3,371 ms
コンパイル使用メモリ 84,632 KB
実行使用メモリ 54,564 KB
最終ジャッジ日時 2024-06-10 20:50:59
合計ジャッジ時間 7,538 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,008 KB
testcase_01 AC 116 ms
53,872 KB
testcase_02 AC 118 ms
54,136 KB
testcase_03 AC 117 ms
54,192 KB
testcase_04 AC 123 ms
54,564 KB
testcase_05 AC 122 ms
54,064 KB
testcase_06 AC 120 ms
54,164 KB
testcase_07 AC 124 ms
54,096 KB
testcase_08 AC 122 ms
54,160 KB
testcase_09 AC 114 ms
53,104 KB
testcase_10 AC 128 ms
53,960 KB
testcase_11 AC 115 ms
54,240 KB
testcase_12 AC 117 ms
53,852 KB
testcase_13 AC 117 ms
54,164 KB
testcase_14 AC 129 ms
54,260 KB
testcase_15 AC 137 ms
54,092 KB
testcase_16 AC 121 ms
54,156 KB
testcase_17 AC 129 ms
53,984 KB
testcase_18 AC 118 ms
54,060 KB
testcase_19 AC 125 ms
54,072 KB
testcase_20 AC 132 ms
54,204 KB
testcase_21 AC 128 ms
54,280 KB
testcase_22 AC 128 ms
54,456 KB
testcase_23 AC 130 ms
53,968 KB
testcase_24 AC 124 ms
54,072 KB
testcase_25 AC 119 ms
53,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        int ans = 0;
        int C;
        int sum = 0;
        HashMap<Integer, Integer> M = new HashMap<>();
        for (int i = 0; i < N; i++) {
            C = scan.nextInt();
            M.put(i, C);
            sum += C;
        }
        for (int i = 0; i < N; i++) if (M.get(i) * 10 <= sum) ans++;
        ans *= 30;
        System.out.println(ans);
    }
}
0