結果

問題 No.191 供託金
ユーザー bellbell
提出日時 2021-02-16 10:03:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 521 bytes
コンパイル時間 2,569 ms
コンパイル使用メモリ 74,008 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-09-13 01:17:48
合計ジャッジ時間 7,315 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,188 KB
testcase_01 AC 134 ms
53,852 KB
testcase_02 AC 133 ms
53,980 KB
testcase_03 AC 131 ms
54,188 KB
testcase_04 AC 142 ms
54,060 KB
testcase_05 AC 145 ms
53,896 KB
testcase_06 AC 143 ms
53,968 KB
testcase_07 AC 145 ms
53,972 KB
testcase_08 AC 134 ms
53,960 KB
testcase_09 AC 138 ms
53,992 KB
testcase_10 AC 141 ms
53,964 KB
testcase_11 AC 136 ms
53,944 KB
testcase_12 AC 137 ms
53,984 KB
testcase_13 AC 143 ms
53,980 KB
testcase_14 AC 142 ms
54,364 KB
testcase_15 AC 140 ms
54,036 KB
testcase_16 AC 138 ms
54,112 KB
testcase_17 AC 145 ms
54,168 KB
testcase_18 AC 135 ms
53,976 KB
testcase_19 AC 142 ms
53,976 KB
testcase_20 AC 141 ms
54,032 KB
testcase_21 AC 147 ms
53,656 KB
testcase_22 AC 143 ms
54,052 KB
testcase_23 AC 144 ms
53,996 KB
testcase_24 AC 138 ms
54,092 KB
testcase_25 AC 134 ms
54,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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 ans=0;
        int count=0;
        for ( int i=0; i<n; i++){
            c[i]=sc.nextInt();
            ans+=c[i];
        }

        ans=ans/10;

        for(int i=0; i<n; i++){
            if( ans >=c[i]){
                count++;
            }
        }
        System.out.println(30*count);
        sc.close();
	}
}

0