結果

問題 No.191 供託金
ユーザー haruki_57haruki_57
提出日時 2015-05-04 01:38:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 549 bytes
コンパイル時間 2,002 ms
コンパイル使用メモリ 74,056 KB
実行使用メモリ 41,636 KB
最終ジャッジ日時 2024-11-16 20:32:21
合計ジャッジ時間 6,545 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
39,876 KB
testcase_01 AC 121 ms
41,368 KB
testcase_02 AC 103 ms
40,012 KB
testcase_03 AC 113 ms
40,976 KB
testcase_04 AC 115 ms
40,480 KB
testcase_05 AC 119 ms
40,988 KB
testcase_06 AC 120 ms
41,400 KB
testcase_07 AC 122 ms
41,112 KB
testcase_08 AC 99 ms
40,120 KB
testcase_09 AC 108 ms
39,908 KB
testcase_10 AC 125 ms
41,340 KB
testcase_11 AC 131 ms
41,512 KB
testcase_12 AC 130 ms
41,128 KB
testcase_13 AC 115 ms
40,364 KB
testcase_14 AC 124 ms
41,328 KB
testcase_15 AC 106 ms
39,784 KB
testcase_16 AC 113 ms
40,608 KB
testcase_17 AC 134 ms
41,180 KB
testcase_18 AC 121 ms
41,248 KB
testcase_19 AC 130 ms
41,636 KB
testcase_20 AC 118 ms
40,228 KB
testcase_21 AC 132 ms
41,052 KB
testcase_22 AC 129 ms
41,240 KB
testcase_23 AC 129 ms
41,520 KB
testcase_24 AC 134 ms
41,348 KB
testcase_25 AC 111 ms
40,700 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 valid = 0;
        for (int i = 0; i < c.length; i++) {
            c[i] = sc.nextInt();
            valid += c[i];
        }
        valid /= 10;
        int ans = 0;
        for (int i = 0; i < c.length; i++) {
            if (c[i] <= valid) {
                ans += 30;
            }
        }
        System.out.println(ans);
    }

}
0