結果

問題 No.216 FAC
ユーザー TatsuDXTatsuDX
提出日時 2016-09-09 00:35:34
言語 Java
(openjdk 23)
結果
AC  
実行時間 165 ms / 1,000 ms
コード長 464 bytes
コンパイル時間 3,777 ms
コンパイル使用メモリ 74,908 KB
実行使用メモリ 54,184 KB
最終ジャッジ日時 2024-11-15 22:52:55
合計ジャッジ時間 8,755 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt(), tmp;
		int[] m = new int[101];
		int[] t = new int[n];
		for(int i = 0; i < n; i++){
			t[i] = sc.nextInt();
		}
		for(int i = 0; i < n; i++){
			m[sc.nextInt()] += t[i];
		}
		for(int i = 1; i < 101; i++){
			if(m[0] < m[i]){
				System.out.println("NO");
				return;
			}
		}
		System.out.println("YES");
	}
}
0