結果

問題 No.216 FAC
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 20:57:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 149 ms / 1,000 ms
コード長 427 bytes
コンパイル時間 2,065 ms
コンパイル使用メモリ 75,012 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-06-30 18:06:05
合計ジャッジ時間 6,695 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,084 KB
testcase_01 AC 129 ms
53,964 KB
testcase_02 AC 129 ms
54,276 KB
testcase_03 AC 146 ms
54,112 KB
testcase_04 AC 137 ms
54,156 KB
testcase_05 AC 136 ms
54,224 KB
testcase_06 AC 129 ms
54,352 KB
testcase_07 AC 130 ms
54,208 KB
testcase_08 AC 130 ms
54,236 KB
testcase_09 AC 131 ms
53,712 KB
testcase_10 AC 135 ms
53,948 KB
testcase_11 AC 129 ms
54,100 KB
testcase_12 AC 130 ms
54,096 KB
testcase_13 AC 129 ms
54,272 KB
testcase_14 AC 132 ms
53,972 KB
testcase_15 AC 129 ms
54,184 KB
testcase_16 AC 149 ms
54,192 KB
testcase_17 AC 143 ms
54,288 KB
testcase_18 AC 146 ms
54,024 KB
testcase_19 AC 142 ms
54,144 KB
testcase_20 AC 143 ms
54,280 KB
testcase_21 AC 147 ms
54,132 KB
testcase_22 AC 146 ms
53,932 KB
testcase_23 AC 143 ms
54,104 KB
testcase_24 AC 148 ms
54,140 KB
testcase_25 AC 145 ms
54,052 KB
testcase_26 AC 132 ms
53,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no216{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int n,a[]=new int[100],b,c[]=new int[101],i,m=0;
		n=stdIn.nextInt();
		for(i=0;i<n;i++) a[i]=stdIn.nextInt();
		for(i=0;i<n;i++) {
			b=stdIn.nextInt();
			c[b]+=a[i];
		}
		for(i=1;i<101;i++) if(c[i]>m) m=c[i];
		if(m<=c[0]) System.out.print("YES");
		else System.out.print("NO");
	}
}
0