結果

問題 No.216 FAC
ユーザー mits58mits58
提出日時 2016-07-02 18:31:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 1,000 ms
コード長 549 bytes
コンパイル時間 2,202 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 41,888 KB
最終ジャッジ日時 2024-10-15 01:00:34
合計ジャッジ時間 6,859 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,208 KB
testcase_01 AC 133 ms
41,244 KB
testcase_02 AC 132 ms
40,796 KB
testcase_03 AC 144 ms
41,524 KB
testcase_04 AC 143 ms
41,300 KB
testcase_05 AC 141 ms
41,068 KB
testcase_06 AC 135 ms
41,428 KB
testcase_07 AC 132 ms
41,176 KB
testcase_08 AC 134 ms
41,208 KB
testcase_09 AC 121 ms
40,012 KB
testcase_10 AC 136 ms
41,180 KB
testcase_11 AC 135 ms
41,388 KB
testcase_12 AC 136 ms
41,080 KB
testcase_13 AC 132 ms
41,272 KB
testcase_14 AC 133 ms
41,176 KB
testcase_15 AC 132 ms
41,084 KB
testcase_16 AC 148 ms
41,648 KB
testcase_17 AC 161 ms
41,888 KB
testcase_18 AC 145 ms
41,408 KB
testcase_19 AC 149 ms
41,336 KB
testcase_20 AC 149 ms
41,588 KB
testcase_21 AC 148 ms
41,344 KB
testcase_22 AC 150 ms
41,316 KB
testcase_23 AC 145 ms
41,588 KB
testcase_24 AC 148 ms
41,200 KB
testcase_25 AC 150 ms
41,292 KB
testcase_26 AC 119 ms
39,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			int n=sc.nextInt();
			int[] p=new int[101];
			int sum=0;
			int[] a=new int[n];
			int[] b=new int[n];
			for(int i=0;i<n;i++) a[i]=sc.nextInt();
			for(int i=0;i<n;i++) b[i]=sc.nextInt();
			for(int i=0;i<n;i++){
				if(b[i]==0) sum+=a[i];
				p[b[i]]+=a[i];
			}
			Arrays.sort(p);
			if(p[100]==sum) System.out.println("YES");
			else System.out.println("NO");
		}
	}
}
0