結果

問題 No.216 FAC
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 06:58:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 773 bytes
コンパイル時間 1,936 ms
コンパイル使用メモリ 75,084 KB
実行使用メモリ 42,000 KB
最終ジャッジ日時 2024-11-25 21:47:35
合計ジャッジ時間 6,039 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,564 KB
testcase_01 AC 106 ms
39,936 KB
testcase_02 AC 113 ms
41,344 KB
testcase_03 AC 116 ms
41,248 KB
testcase_04 AC 117 ms
41,740 KB
testcase_05 AC 117 ms
41,400 KB
testcase_06 AC 109 ms
41,212 KB
testcase_07 AC 109 ms
40,156 KB
testcase_08 AC 99 ms
42,000 KB
testcase_09 AC 112 ms
41,096 KB
testcase_10 AC 101 ms
40,216 KB
testcase_11 AC 111 ms
41,468 KB
testcase_12 AC 106 ms
40,860 KB
testcase_13 AC 109 ms
41,212 KB
testcase_14 AC 115 ms
41,592 KB
testcase_15 AC 119 ms
41,268 KB
testcase_16 AC 131 ms
41,308 KB
testcase_17 AC 132 ms
41,232 KB
testcase_18 AC 129 ms
41,504 KB
testcase_19 AC 127 ms
41,180 KB
testcase_20 AC 127 ms
41,144 KB
testcase_21 AC 122 ms
41,372 KB
testcase_22 AC 126 ms
41,592 KB
testcase_23 AC 124 ms
41,372 KB
testcase_24 AC 129 ms
41,216 KB
testcase_25 AC 122 ms
41,392 KB
testcase_26 AC 106 ms
40,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int [] a = new int [N];
        int [] b = new int [N];
        int [] score = new int [100];
        for(int i=0; i<N; i++){
            a[i] = sc.nextInt();
        }
        int sum=0;
        int max=0;
        for(int i=0; i<N; i++){
            b[i] = sc.nextInt();
            if(b[i]==0){
                sum=sum+a[i];
            }else{
                score[b[i]-1] = score[b[i]-1] + a[i];
                max=Math.max(max,score[b[i]-1]);
            }
        }
        if(sum>=max){
            System.out.println("YES");
        }else{
            System.out.println("NO");
        }
    }
}
0