結果

問題 No.216 FAC
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-11 06:53:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 681 bytes
コンパイル時間 4,583 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2024-10-09 12:48:40
合計ジャッジ時間 8,514 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,884 KB
testcase_01 AC 132 ms
54,228 KB
testcase_02 AC 134 ms
54,228 KB
testcase_03 AC 152 ms
54,268 KB
testcase_04 AC 141 ms
54,096 KB
testcase_05 AC 142 ms
54,228 KB
testcase_06 AC 134 ms
54,108 KB
testcase_07 AC 136 ms
54,176 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 135 ms
54,204 KB
testcase_12 WA -
testcase_13 AC 135 ms
54,016 KB
testcase_14 WA -
testcase_15 AC 131 ms
53,440 KB
testcase_16 AC 164 ms
54,164 KB
testcase_17 AC 157 ms
54,220 KB
testcase_18 WA -
testcase_19 AC 151 ms
54,248 KB
testcase_20 WA -
testcase_21 AC 148 ms
53,900 KB
testcase_22 AC 154 ms
54,116 KB
testcase_23 AC 149 ms
54,064 KB
testcase_24 WA -
testcase_25 AC 161 ms
53,896 KB
testcase_26 AC 134 ms
54,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise76{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int n = sc.nextInt();
    int[] scores = new int[n];
    int[] solved = new int[n];

    int othersScore = 0;
    int ksScore = 0;


    for (int i = 0; i < n; i++){
      scores[i] = sc.nextInt();
    }
    for (int i = 0; i < n; i++){
      solved[i] = sc.nextInt();
    }

    for (int j = 0; j < n; j++){
      if(solved[j] == 0){
        ksScore += scores[j];
      }else{
        othersScore += scores[j];
      }
    }

    if(ksScore < othersScore){
      System.out.println("NO");
    }else{
      System.out.println("YES");
    }
  }
}
0