結果

問題 No.216 FAC
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-11 07:12:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 1,000 ms
コード長 749 bytes
コンパイル時間 3,559 ms
コンパイル使用メモリ 74,804 KB
実行使用メモリ 41,868 KB
最終ジャッジ日時 2024-10-15 00:59:09
合計ジャッジ時間 8,324 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,252 KB
testcase_01 AC 139 ms
41,336 KB
testcase_02 AC 135 ms
41,096 KB
testcase_03 AC 148 ms
41,632 KB
testcase_04 AC 140 ms
41,356 KB
testcase_05 AC 141 ms
41,868 KB
testcase_06 AC 134 ms
41,100 KB
testcase_07 AC 132 ms
41,216 KB
testcase_08 AC 136 ms
41,144 KB
testcase_09 AC 125 ms
41,240 KB
testcase_10 AC 136 ms
41,208 KB
testcase_11 AC 136 ms
41,256 KB
testcase_12 AC 139 ms
41,384 KB
testcase_13 AC 135 ms
41,016 KB
testcase_14 AC 136 ms
40,940 KB
testcase_15 AC 136 ms
41,124 KB
testcase_16 AC 153 ms
41,764 KB
testcase_17 AC 146 ms
41,636 KB
testcase_18 AC 154 ms
41,512 KB
testcase_19 AC 146 ms
41,496 KB
testcase_20 AC 151 ms
41,460 KB
testcase_21 AC 151 ms
41,392 KB
testcase_22 AC 152 ms
41,536 KB
testcase_23 AC 150 ms
41,424 KB
testcase_24 AC 151 ms
41,472 KB
testcase_25 AC 151 ms
41,136 KB
testcase_26 AC 134 ms
41,384 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[] pp = new int[101];


    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++){
      pp[solved[j]] += scores[j];
    }

    boolean flag = true;
    for (int j = 1; j < pp.length; j++){
      if (pp[j] == 0){
        continue;
      }
      if (pp[0] < pp[j]){
        flag = false;
      }
    }

    if (flag){
      System.out.println("YES");
    }else{
      System.out.println("NO");
    }
  }
}
0