結果

問題 No.216 FAC
ユーザー marumaru
提出日時 2016-03-23 19:07:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 591 bytes
コンパイル時間 3,375 ms
コンパイル使用メモリ 74,812 KB
実行使用メモリ 54,568 KB
最終ジャッジ日時 2024-10-01 21:37:08
合計ジャッジ時間 7,446 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,168 KB
testcase_01 AC 111 ms
39,940 KB
testcase_02 AC 130 ms
41,312 KB
testcase_03 AC 146 ms
41,888 KB
testcase_04 AC 138 ms
41,628 KB
testcase_05 AC 133 ms
41,412 KB
testcase_06 AC 118 ms
40,904 KB
testcase_07 AC 117 ms
40,868 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 115 ms
40,936 KB
testcase_12 WA -
testcase_13 AC 115 ms
41,104 KB
testcase_14 WA -
testcase_15 AC 104 ms
40,160 KB
testcase_16 AC 132 ms
41,664 KB
testcase_17 AC 123 ms
41,180 KB
testcase_18 WA -
testcase_19 AC 138 ms
41,708 KB
testcase_20 WA -
testcase_21 AC 125 ms
41,468 KB
testcase_22 AC 123 ms
41,320 KB
testcase_23 AC 124 ms
41,424 KB
testcase_24 WA -
testcase_25 AC 125 ms
41,436 KB
testcase_26 AC 118 ms
40,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yukicoder_216 {
	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		
		int n = stdIn.nextInt();
		
		int[] a = new int[n];
		int[] b = new int[n];
		
		for (int i = 0; i < n; i++) {
			a[i] = stdIn.nextInt();
		}
		
		for (int i = 0; i < n; i++) {
			b[i] = stdIn.nextInt();
		}
		
		int ok = 0;
		int ng = 0;
		
		for (int i = 0; i < n; i++) {
			if (b[i] == 0) {
				ok += a[i];
			} else {
				ng += a[i];
			}
		}
		
		if (ok >= ng) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
	}
}
0