結果

問題 No.216 FAC
ユーザー k_kadorak_kadora
提出日時 2015-06-10 22:25:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 1,000 ms
コード長 736 bytes
コンパイル時間 3,534 ms
コンパイル使用メモリ 77,292 KB
実行使用メモリ 41,876 KB
最終ジャッジ日時 2024-10-15 00:38:40
合計ジャッジ時間 8,297 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,304 KB
testcase_01 AC 136 ms
41,496 KB
testcase_02 AC 135 ms
41,228 KB
testcase_03 AC 149 ms
41,392 KB
testcase_04 AC 144 ms
41,384 KB
testcase_05 AC 141 ms
41,208 KB
testcase_06 AC 136 ms
41,240 KB
testcase_07 AC 135 ms
41,640 KB
testcase_08 AC 137 ms
41,384 KB
testcase_09 AC 136 ms
40,996 KB
testcase_10 AC 134 ms
41,180 KB
testcase_11 AC 136 ms
41,412 KB
testcase_12 AC 135 ms
41,040 KB
testcase_13 AC 122 ms
39,940 KB
testcase_14 AC 136 ms
40,972 KB
testcase_15 AC 133 ms
41,368 KB
testcase_16 AC 150 ms
41,688 KB
testcase_17 AC 150 ms
41,536 KB
testcase_18 AC 152 ms
41,876 KB
testcase_19 AC 150 ms
41,620 KB
testcase_20 AC 150 ms
41,508 KB
testcase_21 AC 152 ms
41,408 KB
testcase_22 AC 154 ms
41,468 KB
testcase_23 AC 151 ms
41,740 KB
testcase_24 AC 150 ms
41,636 KB
testcase_25 AC 147 ms
41,508 KB
testcase_26 AC 137 ms
41,100 KB
権限があれば一括ダウンロードができます

ソースコード

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[100];
		for(int i = 0;i<n;i++){
			score[i] = sc.nextInt();
		}
		for(int i = 0;i<n;i++){
			flag[i] = sc.nextInt();
		}
		for(int i = 0;i<100;i++){
			others[i] = 0;
		}
		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<100;i++){
			if(res < others[i]){
				win = 1;
				break;
			}
		}
		if(win == 1){
			System.out.println("NO");
		}else{
			System.out.println("YES");
		}
	}
}
0