結果

問題 No.191 供託金
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 05:59:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 488 bytes
コンパイル時間 2,167 ms
コンパイル使用メモリ 77,492 KB
実行使用メモリ 41,964 KB
最終ジャッジ日時 2024-05-04 11:16:45
合計ジャッジ時間 5,729 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,668 KB
testcase_01 AC 117 ms
41,524 KB
testcase_02 AC 97 ms
41,524 KB
testcase_03 AC 113 ms
41,568 KB
testcase_04 AC 120 ms
41,528 KB
testcase_05 AC 121 ms
41,388 KB
testcase_06 AC 116 ms
41,736 KB
testcase_07 AC 120 ms
41,644 KB
testcase_08 AC 108 ms
41,176 KB
testcase_09 AC 120 ms
41,320 KB
testcase_10 AC 126 ms
41,784 KB
testcase_11 AC 112 ms
41,488 KB
testcase_12 AC 119 ms
41,292 KB
testcase_13 AC 124 ms
41,656 KB
testcase_14 AC 122 ms
41,964 KB
testcase_15 AC 114 ms
41,524 KB
testcase_16 AC 114 ms
41,460 KB
testcase_17 AC 117 ms
41,816 KB
testcase_18 AC 114 ms
41,708 KB
testcase_19 AC 116 ms
41,792 KB
testcase_20 AC 115 ms
41,732 KB
testcase_21 AC 123 ms
41,464 KB
testcase_22 AC 116 ms
41,748 KB
testcase_23 AC 121 ms
41,564 KB
testcase_24 AC 103 ms
41,556 KB
testcase_25 AC 110 ms
41,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int [] C = new int [N];
        int sum = 0;
        for(int i=0; i<N; i++){
            C[i] = sc.nextInt();
            sum = sum + C[i];
        }
        int c = 0;
        for(int i=0; i<N; i++){
            if(10*C[i] <= sum){
                c++;
            }
        }
        System.out.println(c*30);
    }
}
0