結果

問題 No.216 FAC
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-07 22:27:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 1,000 ms
コード長 727 bytes
コンパイル時間 2,114 ms
コンパイル使用メモリ 75,108 KB
実行使用メモリ 41,628 KB
最終ジャッジ日時 2024-06-28 02:22:12
合計ジャッジ時間 6,509 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,056 KB
testcase_01 AC 128 ms
41,040 KB
testcase_02 AC 128 ms
41,372 KB
testcase_03 AC 141 ms
41,168 KB
testcase_04 AC 134 ms
41,116 KB
testcase_05 AC 133 ms
41,532 KB
testcase_06 AC 126 ms
41,356 KB
testcase_07 AC 129 ms
41,344 KB
testcase_08 AC 115 ms
40,328 KB
testcase_09 AC 126 ms
41,092 KB
testcase_10 AC 116 ms
40,128 KB
testcase_11 AC 127 ms
41,252 KB
testcase_12 AC 118 ms
40,848 KB
testcase_13 AC 128 ms
41,236 KB
testcase_14 AC 126 ms
41,092 KB
testcase_15 AC 128 ms
41,204 KB
testcase_16 AC 152 ms
41,400 KB
testcase_17 AC 143 ms
41,624 KB
testcase_18 AC 147 ms
41,404 KB
testcase_19 AC 143 ms
41,628 KB
testcase_20 AC 138 ms
41,512 KB
testcase_21 AC 144 ms
41,368 KB
testcase_22 AC 140 ms
41,408 KB
testcase_23 AC 153 ms
41,508 KB
testcase_24 AC 154 ms
41,596 KB
testcase_25 AC 144 ms
41,564 KB
testcase_26 AC 128 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int[] a = new int[n];
        int[] b = new int[n];

        int[] c = new int[100];
        for(int i = 0; i < n; i++) {
            a[i] = in.nextInt();
        }
        int k_score = 0;
        for(int i = 0; i < n; i++) {
            b[i] = in.nextInt();
            if(b[i] == 0) k_score += a[i];
            else c[b[i]-1] += a[i];
        }

        String ans = "YES";
        for(int i = 0; i < 100; i++) {
            if(c[i] > k_score) {
                ans = "NO";
                break;
            }
        }
        System.out.println(ans);
    }
}
0