結果

問題 No.216 FAC
コンテスト
ユーザー 37zigen
提出日時 2016-03-10 02:09:53
言語 Java
(openjdk 26.0.2.1 + ACL)
コンパイル:
javac -J-Duser.language=en -encoding UTF8 -cp /opt/aclib/ac_library.jar _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true -cp .:/opt/aclib/ac_library.jar _class_
結果
WA  
実行時間 -
コード長 665 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,441 ms
コンパイル使用メモリ 84,152 KB
実行使用メモリ 43,260 KB
最終ジャッジ日時 2026-09-03 09:03:11
合計ジャッジ時間 4,879 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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