結果

問題 No.216 FAC
ユーザー bellbell
提出日時 2021-03-05 19:47:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 560 bytes
コンパイル時間 2,188 ms
コンパイル使用メモリ 74,092 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2024-10-06 22:05:46
合計ジャッジ時間 6,455 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,124 KB
testcase_01 AC 122 ms
41,084 KB
testcase_02 AC 112 ms
40,016 KB
testcase_03 AC 147 ms
41,320 KB
testcase_04 AC 134 ms
41,280 KB
testcase_05 AC 129 ms
40,800 KB
testcase_06 AC 130 ms
41,248 KB
testcase_07 AC 124 ms
41,248 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 114 ms
40,980 KB
testcase_12 WA -
testcase_13 AC 107 ms
40,336 KB
testcase_14 WA -
testcase_15 AC 114 ms
40,860 KB
testcase_16 AC 127 ms
41,512 KB
testcase_17 AC 138 ms
41,088 KB
testcase_18 WA -
testcase_19 AC 136 ms
41,580 KB
testcase_20 WA -
testcase_21 AC 134 ms
41,056 KB
testcase_22 AC 130 ms
41,064 KB
testcase_23 AC 126 ms
41,120 KB
testcase_24 WA -
testcase_25 AC 132 ms
41,184 KB
testcase_26 AC 108 ms
39,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int ans = 0, ans2 = 0;
		int [] a = new int[n];
		int [] b = new int[n];

		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		for (int i = 0; i < n; i++) {
			b[i] = sc.nextInt();
		if (b[i] != 0) ans += a[i];
		else if (b[i] == 0)  ans2 += a[i];
		}
		if (ans <= ans2) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
		sc.close();
    }
}
0