結果

問題 No.191 供託金
ユーザー yagi2yagi2
提出日時 2017-04-21 16:58:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 648 bytes
コンパイル時間 2,805 ms
コンパイル使用メモリ 88,704 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-07-20 05:07:30
合計ジャッジ時間 7,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,156 KB
testcase_01 AC 133 ms
41,020 KB
testcase_02 AC 134 ms
41,312 KB
testcase_03 AC 133 ms
41,016 KB
testcase_04 AC 143 ms
41,192 KB
testcase_05 AC 148 ms
41,248 KB
testcase_06 AC 142 ms
41,056 KB
testcase_07 AC 144 ms
41,296 KB
testcase_08 AC 139 ms
41,400 KB
testcase_09 AC 139 ms
41,236 KB
testcase_10 AC 145 ms
41,348 KB
testcase_11 AC 142 ms
41,176 KB
testcase_12 AC 143 ms
41,120 KB
testcase_13 AC 143 ms
41,144 KB
testcase_14 AC 143 ms
41,296 KB
testcase_15 AC 142 ms
41,516 KB
testcase_16 AC 138 ms
40,984 KB
testcase_17 AC 139 ms
41,128 KB
testcase_18 AC 137 ms
40,964 KB
testcase_19 AC 141 ms
41,272 KB
testcase_20 AC 140 ms
41,176 KB
testcase_21 AC 143 ms
41,172 KB
testcase_22 AC 140 ms
41,464 KB
testcase_23 AC 140 ms
41,136 KB
testcase_24 AC 138 ms
41,592 KB
testcase_25 AC 132 ms
41,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        long N = Long.parseLong(sc.next());

        List<Long> votes = new ArrayList<>();
        for (long i = 0; i < N; i++) {
            votes.add(Long.parseLong(sc.next()));
        }
        final long[] allVotes = {0};
        votes.forEach(aLong -> allVotes[0] += aLong);

        final int[] cnt = {0};
        votes.forEach(aLong -> {
            if (aLong <= allVotes[0] / 10) cnt[0] += 30;
        });
        System.out.println(cnt[0]);
    }
}
0