結果

問題 No.216 FAC
ユーザー YamaKasaYamaKasa
提出日時 2018-04-30 00:33:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 1,000 ms
コード長 795 bytes
コンパイル時間 2,348 ms
コンパイル使用メモリ 77,600 KB
実行使用メモリ 41,928 KB
最終ジャッジ日時 2024-06-27 23:45:21
合計ジャッジ時間 7,028 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,272 KB
testcase_01 AC 131 ms
41,384 KB
testcase_02 AC 131 ms
41,060 KB
testcase_03 AC 154 ms
41,824 KB
testcase_04 AC 148 ms
41,524 KB
testcase_05 AC 149 ms
41,524 KB
testcase_06 AC 138 ms
41,632 KB
testcase_07 AC 131 ms
41,300 KB
testcase_08 AC 136 ms
41,268 KB
testcase_09 AC 133 ms
41,412 KB
testcase_10 AC 133 ms
41,124 KB
testcase_11 AC 125 ms
40,520 KB
testcase_12 AC 132 ms
41,324 KB
testcase_13 AC 138 ms
41,396 KB
testcase_14 AC 136 ms
41,360 KB
testcase_15 AC 140 ms
41,596 KB
testcase_16 AC 154 ms
41,740 KB
testcase_17 AC 152 ms
41,528 KB
testcase_18 AC 148 ms
41,616 KB
testcase_19 AC 154 ms
41,688 KB
testcase_20 AC 149 ms
41,332 KB
testcase_21 AC 155 ms
41,528 KB
testcase_22 AC 154 ms
41,928 KB
testcase_23 AC 151 ms
41,764 KB
testcase_24 AC 145 ms
41,496 KB
testcase_25 AC 156 ms
41,572 KB
testcase_26 AC 132 ms
41,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int []a = new int[N];
		int []b = new int[N];
		for(int i = 0; i < N; i++) {
			a[i] = scan.nextInt();
		}
		for(int i = 0; i < N; i++) {
			b[i] = scan.nextInt();
		}
		scan.close();
		HashMap<Integer,Integer> map = new HashMap<Integer,Integer>();
		int k = 0;
		for(int i = 0; i < N; i++) {
			if(b[i] == 0) {
				k += a[i];
			}else {
				if(map.get(b[i]) != null) {
					map.put(b[i], map.get(b[i]) + a[i]);
				}else {
					map.put(b[i], a[i]);
				}
			}
		}
		for(int t : map.keySet()) {
			if(k < map.get(t)) {
				System.out.println("NO");
				System.exit(0);
			}
		}
		System.out.println("YES");
	}
}
0