結果

問題 No.191 供託金
ユーザー rf141rf141
提出日時 2015-06-28 16:12:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 427 bytes
コンパイル時間 3,940 ms
コンパイル使用メモリ 77,708 KB
実行使用メモリ 41,552 KB
最終ジャッジ日時 2024-11-16 20:50:25
合計ジャッジ時間 7,658 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,204 KB
testcase_01 AC 129 ms
41,088 KB
testcase_02 AC 129 ms
41,168 KB
testcase_03 AC 120 ms
39,932 KB
testcase_04 AC 139 ms
41,168 KB
testcase_05 AC 140 ms
41,316 KB
testcase_06 AC 139 ms
41,312 KB
testcase_07 AC 139 ms
40,948 KB
testcase_08 AC 129 ms
40,916 KB
testcase_09 AC 135 ms
40,952 KB
testcase_10 AC 139 ms
41,552 KB
testcase_11 AC 132 ms
41,056 KB
testcase_12 AC 129 ms
41,024 KB
testcase_13 AC 135 ms
41,048 KB
testcase_14 AC 137 ms
41,356 KB
testcase_15 AC 136 ms
41,156 KB
testcase_16 AC 134 ms
41,244 KB
testcase_17 AC 137 ms
41,188 KB
testcase_18 AC 128 ms
40,924 KB
testcase_19 AC 138 ms
41,152 KB
testcase_20 AC 141 ms
41,112 KB
testcase_21 AC 141 ms
41,256 KB
testcase_22 AC 141 ms
41,204 KB
testcase_23 AC 141 ms
41,240 KB
testcase_24 AC 139 ms
41,212 KB
testcase_25 AC 130 ms
40,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Kyotaku {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n=sc.nextInt();
        int sum=0,count=0;
        int[] c=new int[n];
        for(int i=0;i<n;i++){
            c[i]=sc.nextInt();
            sum+=c[i];
        }
        for(int i=0;i<n;i++)
            if(sum/10>=c[i])count++;
        System.out.println(count*30);
    }
}
0