結果

問題 No.216 FAC
コンテスト
ユーザー spacenaut
提出日時 2016-05-22 17:29:28
言語 Java
(openjdk 26.0.2.1 + ACL)
コンパイル:
javac -J-Duser.language=en -encoding UTF8 -cp /opt/aclib/ac_library.jar _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true -cp .:/opt/aclib/ac_library.jar _class_
結果
RE  
実行時間 -
コード長 568 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,603 ms
コンパイル使用メモリ 86,944 KB
実行使用メモリ 43,412 KB
最終ジャッジ日時 2026-09-11 06:34:59
合計ジャッジ時間 5,123 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9 RE * 15
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import java.util.*;

class No0216{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int tm = 0;
		String cnt = "YES";
		ArrayList<Integer> a = new ArrayList<Integer>();
		ArrayList<Integer> b = new ArrayList<Integer>();

		for(int i = 0; i < n; i++){
			a.add(sc.nextInt());
			b.add(0);
		}

		for(int i = 0; i < n; i++){
			tm = sc.nextInt();
			b.set(tm, b.get(tm) + a.get(i));
		}

		for(int i = 1; i < n; i++){
			if(b.get(0) < b.get(i)){
				cnt = "NO";
				break;
			}
		}
		System.out.println(cnt);
	}
}
0