結果

問題 No.1741 Arrays and XOR Procedure
ユーザー CuriousFairy315CuriousFairy315
提出日時 2021-11-12 22:55:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 735 bytes
コンパイル時間 2,185 ms
コンパイル使用メモリ 79,440 KB
実行使用メモリ 53,832 KB
最終ジャッジ日時 2024-05-04 10:34:16
合計ジャッジ時間 20,634 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
41,328 KB
testcase_01 AC 105 ms
41,464 KB
testcase_02 AC 101 ms
41,524 KB
testcase_03 AC 522 ms
52,816 KB
testcase_04 AC 105 ms
40,904 KB
testcase_05 WA -
testcase_06 AC 645 ms
52,128 KB
testcase_07 AC 614 ms
52,476 KB
testcase_08 AC 624 ms
53,832 KB
testcase_09 AC 522 ms
52,352 KB
testcase_10 AC 491 ms
49,900 KB
testcase_11 AC 551 ms
48,652 KB
testcase_12 AC 527 ms
48,212 KB
testcase_13 AC 569 ms
50,864 KB
testcase_14 AC 518 ms
48,308 KB
testcase_15 AC 580 ms
48,780 KB
testcase_16 AC 213 ms
46,120 KB
testcase_17 AC 390 ms
48,240 KB
testcase_18 AC 464 ms
48,696 KB
testcase_19 AC 199 ms
45,704 KB
testcase_20 AC 620 ms
51,988 KB
testcase_21 AC 558 ms
48,748 KB
testcase_22 AC 527 ms
48,504 KB
testcase_23 AC 369 ms
48,232 KB
testcase_24 AC 237 ms
46,604 KB
testcase_25 AC 565 ms
51,196 KB
testcase_26 AC 459 ms
48,352 KB
testcase_27 WA -
testcase_28 AC 538 ms
48,788 KB
testcase_29 AC 477 ms
48,936 KB
testcase_30 AC 436 ms
48,460 KB
testcase_31 AC 198 ms
45,980 KB
testcase_32 AC 468 ms
47,972 KB
testcase_33 AC 444 ms
48,680 KB
testcase_34 AC 326 ms
47,896 KB
testcase_35 WA -
testcase_36 AC 226 ms
47,048 KB
testcase_37 AC 461 ms
48,100 KB
testcase_38 AC 634 ms
50,800 KB
testcase_39 AC 364 ms
48,208 KB
testcase_40 AC 172 ms
43,200 KB
testcase_41 AC 314 ms
48,056 KB
testcase_42 AC 205 ms
45,892 KB
testcase_43 AC 96 ms
41,692 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 - 1, 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