結果

問題 No.191 供託金
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-05-03 22:05:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 998 bytes
コンパイル時間 3,306 ms
コンパイル使用メモリ 78,080 KB
実行使用メモリ 41,676 KB
最終ジャッジ日時 2024-11-16 20:31:09
合計ジャッジ時間 7,278 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,076 KB
testcase_01 AC 109 ms
40,012 KB
testcase_02 AC 122 ms
41,224 KB
testcase_03 AC 116 ms
41,092 KB
testcase_04 AC 119 ms
41,504 KB
testcase_05 AC 129 ms
41,256 KB
testcase_06 AC 128 ms
41,212 KB
testcase_07 AC 120 ms
41,676 KB
testcase_08 AC 105 ms
39,916 KB
testcase_09 AC 119 ms
40,944 KB
testcase_10 AC 123 ms
41,420 KB
testcase_11 AC 121 ms
41,376 KB
testcase_12 AC 99 ms
39,552 KB
testcase_13 AC 119 ms
41,036 KB
testcase_14 AC 127 ms
41,132 KB
testcase_15 AC 121 ms
41,044 KB
testcase_16 AC 113 ms
40,068 KB
testcase_17 AC 129 ms
41,068 KB
testcase_18 AC 121 ms
41,120 KB
testcase_19 AC 130 ms
41,468 KB
testcase_20 AC 129 ms
41,256 KB
testcase_21 AC 128 ms
41,028 KB
testcase_22 AC 121 ms
41,112 KB
testcase_23 AC 135 ms
41,492 KB
testcase_24 AC 117 ms
41,504 KB
testcase_25 AC 107 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.191 供託金

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No0191 {
    
    static final Scanner in = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int n = in.nextInt();
        int[] c = new int[n];
        long sum = 0;
        for (int i=0; i<n; i++) {
            c[i] = in.nextInt();
            sum += c[i];
        }

        double x = (double)sum/10;
        int cnt = 0;
        for (int i=0; i<n; i++) {
            if (c[i] <= x) cnt++;
        }
        out.println(cnt*30);
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        in.close();
        out.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0