結果

問題 No.191 供託金
ユーザー ぴろずぴろず
提出日時 2015-04-26 22:02:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 402 bytes
コンパイル時間 2,430 ms
コンパイル使用メモリ 73,764 KB
実行使用メモリ 41,412 KB
最終ジャッジ日時 2024-11-16 20:20:20
合計ジャッジ時間 6,329 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,848 KB
testcase_01 AC 116 ms
40,904 KB
testcase_02 AC 103 ms
40,036 KB
testcase_03 AC 103 ms
39,820 KB
testcase_04 AC 126 ms
41,356 KB
testcase_05 AC 125 ms
41,088 KB
testcase_06 AC 113 ms
40,960 KB
testcase_07 AC 131 ms
41,152 KB
testcase_08 AC 120 ms
40,812 KB
testcase_09 AC 123 ms
40,988 KB
testcase_10 AC 131 ms
41,192 KB
testcase_11 AC 126 ms
40,972 KB
testcase_12 AC 106 ms
39,848 KB
testcase_13 AC 108 ms
39,816 KB
testcase_14 AC 125 ms
41,412 KB
testcase_15 AC 114 ms
40,292 KB
testcase_16 AC 105 ms
40,028 KB
testcase_17 AC 118 ms
40,960 KB
testcase_18 AC 101 ms
39,652 KB
testcase_19 AC 131 ms
41,348 KB
testcase_20 AC 117 ms
41,028 KB
testcase_21 AC 120 ms
41,088 KB
testcase_22 AC 122 ms
41,344 KB
testcase_23 AC 129 ms
41,200 KB
testcase_24 AC 103 ms
39,840 KB
testcase_25 AC 103 ms
40,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no191;

import java.util.Scanner;

public class Main {

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

}
0