結果

問題 No.1741 Arrays and XOR Procedure
ユーザー CuriousFairy315CuriousFairy315
提出日時 2021-11-12 22:47:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 731 bytes
コンパイル時間 1,839 ms
コンパイル使用メモリ 74,600 KB
実行使用メモリ 64,124 KB
最終ジャッジ日時 2024-05-04 10:21:53
合計ジャッジ時間 21,244 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,356 KB
testcase_01 AC 126 ms
41,184 KB
testcase_02 AC 124 ms
41,596 KB
testcase_03 AC 530 ms
52,580 KB
testcase_04 AC 119 ms
41,560 KB
testcase_05 WA -
testcase_06 AC 637 ms
52,064 KB
testcase_07 AC 525 ms
50,928 KB
testcase_08 AC 620 ms
53,024 KB
testcase_09 AC 511 ms
53,100 KB
testcase_10 AC 611 ms
49,860 KB
testcase_11 AC 524 ms
48,604 KB
testcase_12 AC 498 ms
48,640 KB
testcase_13 AC 536 ms
52,204 KB
testcase_14 AC 682 ms
48,584 KB
testcase_15 AC 556 ms
48,868 KB
testcase_16 AC 216 ms
46,428 KB
testcase_17 AC 419 ms
48,424 KB
testcase_18 AC 501 ms
48,552 KB
testcase_19 AC 204 ms
45,984 KB
testcase_20 AC 513 ms
53,048 KB
testcase_21 AC 572 ms
48,808 KB
testcase_22 AC 532 ms
48,756 KB
testcase_23 AC 392 ms
48,212 KB
testcase_24 AC 235 ms
47,232 KB
testcase_25 AC 567 ms
50,856 KB
testcase_26 AC 459 ms
48,252 KB
testcase_27 WA -
testcase_28 AC 492 ms
49,608 KB
testcase_29 AC 562 ms
48,756 KB
testcase_30 AC 554 ms
48,816 KB
testcase_31 AC 212 ms
46,736 KB
testcase_32 AC 457 ms
48,564 KB
testcase_33 AC 488 ms
48,540 KB
testcase_34 AC 330 ms
48,224 KB
testcase_35 WA -
testcase_36 AC 233 ms
47,452 KB
testcase_37 AC 436 ms
48,492 KB
testcase_38 AC 618 ms
52,972 KB
testcase_39 AC 452 ms
48,596 KB
testcase_40 AC 178 ms
43,536 KB
testcase_41 AC 311 ms
47,964 KB
testcase_42 AC 205 ms
46,252 KB
testcase_43 AC 120 ms
41,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		try (Scanner sc = new Scanner(System.in)) {
			int N = sc.nextInt();
			int[] B = new int[N];
			for (int i = 0;i < N;++ i) B[i] = sc.nextInt();
			final int MOD = 998_244_353;
			int use = -1, ans = 1, sum = 0;
			for (int i = 0;i < N;++ i) {
				if (B[i] == -1) {
					if (combination_mod2(N, i) == 0) ans = ans * 2 % MOD;
					else ++ use;
				} else if (combination_mod2(N, i) != 0) sum = sum + B[i] & 1;
			}
			if (use < 0 && sum == 0) System.out.println(0);
			else {
				while(use --> 0) ans = ans * 2 % MOD;
				System.out.println(ans);
			}
		}
	}
	
	static int combination_mod2(int n, int k) {
		return (n & k) == k ? 1 : 0;
	}
}
0