結果

問題 No.216 FAC
ユーザー discoNekodiscoNeko
提出日時 2016-04-28 22:37:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 816 bytes
コンパイル時間 1,912 ms
コンパイル使用メモリ 77,428 KB
実行使用メモリ 50,416 KB
最終ジャッジ日時 2024-10-15 00:58:11
合計ジャッジ時間 4,123 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
49,888 KB
testcase_01 AC 51 ms
49,992 KB
testcase_02 AC 50 ms
50,036 KB
testcase_03 AC 53 ms
49,996 KB
testcase_04 AC 52 ms
49,592 KB
testcase_05 AC 52 ms
50,020 KB
testcase_06 AC 51 ms
49,696 KB
testcase_07 AC 51 ms
50,048 KB
testcase_08 AC 53 ms
49,952 KB
testcase_09 AC 55 ms
50,096 KB
testcase_10 AC 52 ms
50,092 KB
testcase_11 AC 52 ms
49,724 KB
testcase_12 AC 51 ms
50,068 KB
testcase_13 AC 54 ms
49,940 KB
testcase_14 AC 52 ms
49,880 KB
testcase_15 AC 51 ms
50,124 KB
testcase_16 AC 51 ms
49,868 KB
testcase_17 AC 53 ms
49,684 KB
testcase_18 AC 52 ms
49,848 KB
testcase_19 AC 50 ms
50,076 KB
testcase_20 AC 50 ms
50,140 KB
testcase_21 AC 52 ms
50,096 KB
testcase_22 AC 51 ms
49,896 KB
testcase_23 AC 51 ms
50,148 KB
testcase_24 AC 54 ms
49,904 KB
testcase_25 AC 56 ms
49,984 KB
testcase_26 AC 52 ms
50,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
import java.math.*;
 
public class Main {
	public static void main(String[] args)throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringBuilder sb = new StringBuilder();
		int n = Integer.parseInt(br.readLine());
		String[] str1 = br.readLine().split(" ");
		String[] str2 = br.readLine().split(" ");
		int[] p = new int [101];
		int max = 0;
		int sum = 0;
		for(int i = 0; i < n; i++){
			int a = Integer.parseInt(str1[i]);
			int b = Integer.parseInt(str2[i]);
			if(b!=0){
				p[b] += a;
				max = Math.max(max,p[b]);
			}else{
				sum += a;
			}
		}
		if(max>sum){
			sb.append("NO");
		}else{
			sb.append("YES");
		}
		System.out.println(sb);
	}
}
0