結果

問題 No.216 FAC
ユーザー 37zigen
提出日時 2016-03-10 02:09:53
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 665 bytes
コンパイル時間 2,387 ms
コンパイル使用メモリ 75,152 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2024-09-24 17:26:15
合計ジャッジ時間 7,711 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
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[] p=new int[102];
		int sum=0;
		Arrays.fill(p, 0);
		for(int i=0;i<n;i++){
			a[i]=sc.nextInt();
		}
		for(int i=0;i<n;i++){
			int b=sc.nextInt();
			if(b==0){
				sum+=a[i];
			}else{
				p[b+1]+=a[i];
			}
		}
		int max=0;
		for(int i=0;i<100;i++){
			if(max<p[i]){
				max=p[i];
			}
		}
		//System.out.println(sum+"sum "+max+"max");
		if(max>sum){
			System.out.println("NO");
		}else if(max<=sum){
			System.out.println("YES");
		}
	}
}
0