結果

問題 No.191 供託金
ユーザー Ryota EnokidoRyota Enokido
提出日時 2018-12-11 12:47:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 681 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 74,260 KB
実行使用メモリ 41,908 KB
最終ジャッジ日時 2024-09-21 18:09:35
合計ジャッジ時間 6,692 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,404 KB
testcase_01 AC 132 ms
41,096 KB
testcase_02 AC 133 ms
41,252 KB
testcase_03 AC 133 ms
41,276 KB
testcase_04 AC 143 ms
41,716 KB
testcase_05 AC 142 ms
41,556 KB
testcase_06 AC 142 ms
41,524 KB
testcase_07 AC 144 ms
41,584 KB
testcase_08 AC 126 ms
40,476 KB
testcase_09 AC 142 ms
41,448 KB
testcase_10 AC 145 ms
41,904 KB
testcase_11 AC 138 ms
41,384 KB
testcase_12 AC 134 ms
41,192 KB
testcase_13 AC 141 ms
41,628 KB
testcase_14 AC 148 ms
41,492 KB
testcase_15 AC 143 ms
41,328 KB
testcase_16 AC 142 ms
41,408 KB
testcase_17 AC 146 ms
41,824 KB
testcase_18 AC 139 ms
41,460 KB
testcase_19 AC 141 ms
41,148 KB
testcase_20 AC 147 ms
41,540 KB
testcase_21 AC 147 ms
41,908 KB
testcase_22 AC 142 ms
41,780 KB
testcase_23 AC 142 ms
41,492 KB
testcase_24 AC 138 ms
41,244 KB
testcase_25 AC 132 ms
41,328 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[] getVotes = new int[n];
          int sum = 0;
          int depositMoney = 0;
          
          
          for(int i=0; i<n; i++){
              getVotes[i] = sc.nextInt();
              sum += getVotes[i];
          }
          
          int standard = sum / 10;

          for(int j=0; j<n; j++){
              if(getVotes[j]<=standard){
                  depositMoney += 30;
              }
          }
          
          System.out.println(depositMoney);
          
      }
  }
0