結果

問題 No.216 FAC
ユーザー 37zigen37zigen
提出日時 2016-03-30 14:23:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 1,000 ms
コード長 496 bytes
コンパイル時間 3,330 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-10-15 00:57:38
合計ジャッジ時間 7,777 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,832 KB
testcase_01 AC 122 ms
53,588 KB
testcase_02 AC 119 ms
53,544 KB
testcase_03 AC 130 ms
53,924 KB
testcase_04 AC 123 ms
54,052 KB
testcase_05 AC 131 ms
53,908 KB
testcase_06 AC 110 ms
52,768 KB
testcase_07 AC 124 ms
53,780 KB
testcase_08 AC 119 ms
53,696 KB
testcase_09 AC 123 ms
53,708 KB
testcase_10 AC 111 ms
52,576 KB
testcase_11 AC 122 ms
54,016 KB
testcase_12 AC 129 ms
53,788 KB
testcase_13 AC 112 ms
52,712 KB
testcase_14 AC 123 ms
53,656 KB
testcase_15 AC 124 ms
53,812 KB
testcase_16 AC 142 ms
54,216 KB
testcase_17 AC 137 ms
54,136 KB
testcase_18 AC 130 ms
53,840 KB
testcase_19 AC 135 ms
53,816 KB
testcase_20 AC 135 ms
53,976 KB
testcase_21 AC 134 ms
53,988 KB
testcase_22 AC 139 ms
53,952 KB
testcase_23 AC 130 ms
53,912 KB
testcase_24 AC 138 ms
54,056 KB
testcase_25 AC 136 ms
53,952 KB
testcase_26 AC 123 ms
53,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder216;
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[101];
		for(int i=0;i<n;i++){
			a[i]=sc.nextInt();
		}
		for(int i=0;i<n;i++){
			b[i]=sc.nextInt();
			p[b[i]]+=a[i];
		}
		int pp=p[0];
		for(int i=1;i<101;i++){
			if(pp<p[i]){
				System.out.println("NO");
				return;
			}
		}
		System.out.println("YES");
	}
}
0