結果

問題 No.216 FAC
ユーザー yagi2yagi2
提出日時 2017-04-21 12:37:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 1,123 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 85,620 KB
実行使用メモリ 41,720 KB
最終ジャッジ日時 2024-07-20 05:02:14
合計ジャッジ時間 6,593 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,248 KB
testcase_01 AC 113 ms
40,840 KB
testcase_02 AC 103 ms
39,808 KB
testcase_03 AC 124 ms
41,720 KB
testcase_04 AC 118 ms
41,336 KB
testcase_05 AC 124 ms
41,336 KB
testcase_06 AC 101 ms
39,992 KB
testcase_07 AC 110 ms
40,984 KB
testcase_08 AC 123 ms
41,176 KB
testcase_09 AC 114 ms
41,144 KB
testcase_10 AC 104 ms
39,776 KB
testcase_11 AC 119 ms
41,404 KB
testcase_12 AC 114 ms
41,164 KB
testcase_13 AC 119 ms
41,176 KB
testcase_14 AC 117 ms
41,192 KB
testcase_15 AC 121 ms
41,272 KB
testcase_16 AC 134 ms
41,448 KB
testcase_17 AC 136 ms
41,240 KB
testcase_18 AC 136 ms
41,532 KB
testcase_19 AC 135 ms
41,192 KB
testcase_20 AC 130 ms
41,388 KB
testcase_21 AC 134 ms
41,352 KB
testcase_22 AC 134 ms
41,164 KB
testcase_23 AC 133 ms
41,624 KB
testcase_24 AC 133 ms
41,220 KB
testcase_25 AC 124 ms
41,268 KB
testcase_26 AC 123 ms
41,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int N = Integer.parseInt(sc.next());
        int[][] scores = new int[N][2];

        for (int i = 0; i < N; i++) {
            scores[i][0] = Integer.parseInt(sc.next());
        }


        Map<Integer, Integer> map = new HashMap<>();

        for (int i = 0; i < N; i++) {
            int p = Integer.parseInt(sc.next());

            if (p == 0) {
                scores[i][1] = 0;
                continue;
            }

            if (!map.containsKey(p)) map.put(p, 0);
            map.put(p, map.get(p) + scores[i][0]);
            scores[i][1] = p;
        }

        int K = 0;
        for (int i = 0; i < N; i++) {
            if (scores[i][1] == 0) {
                K += scores[i][0];
            }
        }

        final int[] max = {-1};
        map.values().forEach(integer -> {
            if (max[0] < integer) max[0] = integer;
        });

        System.out.println((max[0] <= K)? "YES" : "NO");
    }
}
0