結果

問題 No.216 FAC
ユーザー Subaru314Subaru314
提出日時 2021-05-24 01:05:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 829 bytes
コンパイル時間 2,207 ms
コンパイル使用メモリ 77,324 KB
実行使用メモリ 54,456 KB
最終ジャッジ日時 2024-10-12 05:41:23
合計ジャッジ時間 6,966 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,120 KB
testcase_01 AC 134 ms
54,180 KB
testcase_02 AC 132 ms
54,080 KB
testcase_03 AC 150 ms
54,044 KB
testcase_04 AC 139 ms
54,112 KB
testcase_05 AC 140 ms
54,044 KB
testcase_06 AC 132 ms
53,960 KB
testcase_07 AC 133 ms
54,024 KB
testcase_08 AC 134 ms
54,224 KB
testcase_09 AC 132 ms
53,996 KB
testcase_10 AC 135 ms
54,108 KB
testcase_11 AC 136 ms
54,000 KB
testcase_12 AC 134 ms
53,932 KB
testcase_13 AC 134 ms
54,324 KB
testcase_14 AC 136 ms
54,228 KB
testcase_15 WA -
testcase_16 AC 149 ms
53,864 KB
testcase_17 AC 151 ms
54,000 KB
testcase_18 AC 150 ms
53,980 KB
testcase_19 AC 148 ms
54,232 KB
testcase_20 AC 151 ms
54,244 KB
testcase_21 AC 151 ms
53,856 KB
testcase_22 AC 148 ms
54,264 KB
testcase_23 AC 149 ms
54,200 KB
testcase_24 AC 147 ms
54,060 KB
testcase_25 AC 147 ms
54,456 KB
testcase_26 AC 130 ms
53,952 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[] pro = new int[n];
    int[] name = new int[n];
    for(int i = 0; i < n; i++){
      pro[i] = sc.nextInt();
    }
    for(int i = 0; i < n; i++){
      name[i] = sc.nextInt();
    }
    int[] point = new int[100];
    for(int i = 0; i < 100; i++){
      point[i] = 100;
    }
    for(int i = 0; i < 100; i++){
      for(int j = 0; j < n; j++){
        if(name[j] == i){
          point[i] = point[i] + pro[j];
        }
      }
    }
    int ans = point[0];
    for(int i = 1; i < 100; i++){
      if(ans<point[i]){
        ans = point[i];
      }
    }
    if(ans==point[0]){
      System.out.println("YES");
    }else{
      System.out.println("NO");
    }
  }
}
0