結果

問題 No.216 FAC
ユーザー kou6839kou6839
提出日時 2015-05-30 23:02:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 1,000 ms
コード長 922 bytes
コンパイル時間 2,534 ms
コンパイル使用メモリ 78,484 KB
実行使用メモリ 41,980 KB
最終ジャッジ日時 2024-10-15 00:37:19
合計ジャッジ時間 7,349 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,220 KB
testcase_01 AC 134 ms
41,256 KB
testcase_02 AC 136 ms
41,172 KB
testcase_03 AC 150 ms
41,488 KB
testcase_04 AC 140 ms
41,240 KB
testcase_05 AC 141 ms
41,484 KB
testcase_06 AC 133 ms
41,300 KB
testcase_07 AC 131 ms
41,316 KB
testcase_08 AC 133 ms
41,236 KB
testcase_09 AC 134 ms
40,944 KB
testcase_10 AC 136 ms
41,224 KB
testcase_11 AC 135 ms
40,984 KB
testcase_12 AC 134 ms
41,412 KB
testcase_13 AC 134 ms
41,432 KB
testcase_14 AC 135 ms
41,296 KB
testcase_15 AC 133 ms
41,148 KB
testcase_16 AC 152 ms
41,560 KB
testcase_17 AC 152 ms
41,332 KB
testcase_18 AC 167 ms
41,980 KB
testcase_19 AC 154 ms
41,508 KB
testcase_20 AC 147 ms
41,496 KB
testcase_21 AC 159 ms
41,380 KB
testcase_22 AC 152 ms
41,720 KB
testcase_23 AC 159 ms
41,436 KB
testcase_24 AC 152 ms
41,536 KB
testcase_25 AC 151 ms
41,484 KB
testcase_26 AC 133 ms
41,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args){
        // TODO 自動生成されたメソッド・スタブ
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int ten = 0;
        int[] a = new int[n];
        int[] b = new int[n];
        for(int i=0;i<n;i++) a[i]=sc.nextInt();
        for(int i=0;i<n;i++) b[i]=sc.nextInt();
        HashMap<Integer, Integer> map= new HashMap<Integer, Integer>();
        for(int i=0;i<n;i++){
        	if(b[i]==0){
        		ten+=a[i];
        	}else{
        		if(map.containsKey(b[i])){
        			map.put(b[i], map.get(b[i])+a[i]);
        		}else{
        			map.put(b[i],a[i]);
        		}
        	}
        }
        for(int i:map.keySet()){
        	if(map.get(i)>ten){
        		System.out.println("NO");
        		return;
        	}
        }
        System.out.println("YES");
    }
}
0