結果

問題 No.216 FAC
ユーザー k_kadorak_kadora
提出日時 2015-06-10 22:21:28
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 700 bytes
コンパイル時間 2,894 ms
コンパイル使用メモリ 78,032 KB
実行使用メモリ 41,952 KB
最終ジャッジ日時 2024-07-06 15:26:35
合計ジャッジ時間 6,632 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
40,420 KB
testcase_01 AC 102 ms
41,432 KB
testcase_02 AC 100 ms
41,016 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 103 ms
41,300 KB
testcase_07 AC 92 ms
39,948 KB
testcase_08 AC 101 ms
40,752 KB
testcase_09 AC 101 ms
41,168 KB
testcase_10 AC 102 ms
41,400 KB
testcase_11 AC 100 ms
40,880 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 101 ms
41,380 KB
testcase_15 RE -
testcase_16 AC 113 ms
41,408 KB
testcase_17 AC 109 ms
41,560 KB
testcase_18 AC 115 ms
41,592 KB
testcase_19 AC 113 ms
41,512 KB
testcase_20 AC 116 ms
41,952 KB
testcase_21 AC 111 ms
41,244 KB
testcase_22 AC 112 ms
41,264 KB
testcase_23 AC 115 ms
41,772 KB
testcase_24 AC 111 ms
41,012 KB
testcase_25 AC 111 ms
41,028 KB
testcase_26 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Fac{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int n,res=0,win=0;
		n = sc.nextInt();
		int[] score = new int[n];
		int[] flag = new int[n];
		int[] others = new int[n];
		for(int i = 0;i<n;i++){
			score[i] = sc.nextInt();
			others[i] = 0;
		}
		for(int i = 0;i<n;i++){
			flag[i] = sc.nextInt();
		}
		for(int i = 0;i<n;i++){
			if(flag[i] == 0){
				res = res + score[i];
			}else{
				others[flag[i]-1] = others[flag[i]-1]+score[i];
			}
		}
		for(int i = 0;i<n;i++){
			if(res < others[i]){
				win = 1;
				break;
			}
		}
		if(win == 1){
			System.out.println("NO");
		}else{
			System.out.println("YES");
		}
	}
}
0