結果

問題 No.216 FAC
ユーザー 37zigen37zigen
提出日時 2016-03-10 02:06:17
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 665 bytes
コンパイル時間 1,942 ms
コンパイル使用メモリ 74,284 KB
実行使用メモリ 54,868 KB
最終ジャッジ日時 2024-09-24 17:25:47
合計ジャッジ時間 6,255 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,848 KB
testcase_01 AC 123 ms
53,972 KB
testcase_02 AC 128 ms
54,356 KB
testcase_03 RE -
testcase_04 AC 134 ms
54,040 KB
testcase_05 RE -
testcase_06 AC 120 ms
54,308 KB
testcase_07 AC 124 ms
54,052 KB
testcase_08 AC 109 ms
52,964 KB
testcase_09 AC 123 ms
53,996 KB
testcase_10 AC 123 ms
54,156 KB
testcase_11 AC 117 ms
54,036 KB
testcase_12 AC 119 ms
54,420 KB
testcase_13 RE -
testcase_14 AC 118 ms
54,088 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 137 ms
54,612 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
権限があれば一括ダウンロードができます

ソースコード

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[100];
		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