結果

問題 No.216 FAC
ユーザー uafr_csuafr_cs
提出日時 2015-05-29 00:43:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 643 bytes
コンパイル時間 2,284 ms
コンパイル使用メモリ 75,452 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-07-06 10:14:53
合計ジャッジ時間 6,001 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
53,048 KB
testcase_01 AC 101 ms
52,844 KB
testcase_02 AC 100 ms
54,300 KB
testcase_03 AC 123 ms
54,444 KB
testcase_04 AC 116 ms
53,864 KB
testcase_05 AC 112 ms
53,444 KB
testcase_06 AC 115 ms
54,156 KB
testcase_07 AC 99 ms
52,828 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 113 ms
54,000 KB
testcase_12 WA -
testcase_13 AC 122 ms
54,128 KB
testcase_14 WA -
testcase_15 AC 115 ms
54,132 KB
testcase_16 AC 124 ms
54,244 KB
testcase_17 AC 124 ms
53,968 KB
testcase_18 WA -
testcase_19 AC 123 ms
54,172 KB
testcase_20 WA -
testcase_21 AC 129 ms
54,148 KB
testcase_22 AC 125 ms
54,096 KB
testcase_23 AC 132 ms
54,140 KB
testcase_24 WA -
testcase_25 AC 125 ms
54,288 KB
testcase_26 AC 107 ms
53,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		int[] as = new int[N];
		int[] bs = new int[N];
		
		for(int i = 0; i < N; i++){
			final int a = sc.nextInt();
			as[i] = a;
		}
		
		for(int i = 0; i < N; i++){
			final int b = sc.nextInt();
			bs[i] = b;
		}
		
		int solved = 0, unsolved = 0;
		for(int i = 0; i < N; i++){
			if(bs[i] == 0){
				unsolved += as[i];
			}else{
				solved += as[i];
			}
		}
		
		System.out.println(solved <= unsolved ? "YES" : "NO");
	}
	
}
0