結果

問題 No.191 供託金
ユーザー Mcpu3Mcpu3
提出日時 2018-06-21 23:41:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 324 bytes
コンパイル時間 1,993 ms
コンパイル使用メモリ 74,116 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-06-30 17:45:50
合計ジャッジ時間 6,442 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
40,692 KB
testcase_01 AC 129 ms
41,008 KB
testcase_02 AC 114 ms
39,596 KB
testcase_03 AC 127 ms
40,928 KB
testcase_04 AC 138 ms
41,228 KB
testcase_05 AC 138 ms
41,072 KB
testcase_06 AC 134 ms
41,452 KB
testcase_07 AC 137 ms
41,000 KB
testcase_08 AC 114 ms
39,804 KB
testcase_09 AC 129 ms
41,080 KB
testcase_10 AC 125 ms
40,780 KB
testcase_11 AC 126 ms
40,960 KB
testcase_12 AC 114 ms
39,920 KB
testcase_13 AC 137 ms
41,132 KB
testcase_14 AC 135 ms
41,132 KB
testcase_15 AC 128 ms
41,112 KB
testcase_16 AC 133 ms
41,560 KB
testcase_17 AC 135 ms
41,260 KB
testcase_18 AC 128 ms
40,932 KB
testcase_19 AC 141 ms
40,980 KB
testcase_20 AC 138 ms
41,424 KB
testcase_21 AC 138 ms
40,980 KB
testcase_22 AC 137 ms
41,008 KB
testcase_23 AC 140 ms
41,316 KB
testcase_24 AC 125 ms
40,652 KB
testcase_25 AC 116 ms
41,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no191{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int i,s=0,a=0,c[]=new int[100],n;
		n=stdIn.nextInt();
		for(i=0;i<n;i++) {
			c[i]=stdIn.nextInt();
			s+=c[i];
		}
		for(i=0;i<n;i++) if(c[i]<=s/10) a++;
		System.out.print(30*a);
	}
}
0