結果

問題 No.216 FAC
ユーザー dazydazy
提出日時 2017-02-23 21:10:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 872 bytes
コンパイル時間 4,167 ms
コンパイル使用メモリ 88,956 KB
実行使用メモリ 41,920 KB
最終ジャッジ日時 2024-06-10 21:01:16
合計ジャッジ時間 8,038 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,288 KB
testcase_01 AC 117 ms
41,528 KB
testcase_02 AC 115 ms
41,452 KB
testcase_03 AC 137 ms
41,584 KB
testcase_04 AC 131 ms
41,224 KB
testcase_05 AC 120 ms
41,464 KB
testcase_06 AC 114 ms
41,308 KB
testcase_07 AC 124 ms
41,344 KB
testcase_08 AC 110 ms
40,156 KB
testcase_09 AC 121 ms
41,696 KB
testcase_10 AC 110 ms
41,636 KB
testcase_11 AC 125 ms
41,220 KB
testcase_12 AC 121 ms
41,396 KB
testcase_13 AC 118 ms
41,288 KB
testcase_14 AC 124 ms
41,540 KB
testcase_15 AC 119 ms
41,656 KB
testcase_16 AC 131 ms
41,612 KB
testcase_17 AC 130 ms
41,880 KB
testcase_18 AC 130 ms
41,588 KB
testcase_19 AC 132 ms
41,588 KB
testcase_20 AC 125 ms
41,604 KB
testcase_21 AC 130 ms
41,580 KB
testcase_22 AC 131 ms
41,588 KB
testcase_23 AC 130 ms
41,356 KB
testcase_24 AC 133 ms
41,920 KB
testcase_25 AC 131 ms
41,680 KB
testcase_26 AC 106 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        String ans = "YES";
        int N = scan.nextInt();
        ArrayList<Integer> point = new ArrayList<>();
        HashMap<Integer, Integer> solver = new HashMap<>();
        int tmp;

        for (int i = 0; i < N; i++) point.add(scan.nextInt());
        for (int i = 0; i < N; i++) {
            tmp = scan.nextInt();
            if (solver.containsKey(tmp)) solver.put(tmp, solver.get(tmp) + point.get(i));
            else solver.put(tmp, point.get(i));
        }

        if (!solver.containsKey(0)) ans = "NO";
        else {
            int max;
            max = solver.values().stream().max((a, b) -> a.compareTo(b)).get();
            if (solver.get(0) < max) ans = "NO";
        }

        System.out.println(ans);
    }
}
0