結果

問題 No.1741 Arrays and XOR Procedure
ユーザー ks2mks2m
提出日時 2021-11-12 22:14:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,138 bytes
コンパイル時間 2,313 ms
コンパイル使用メモリ 77,764 KB
実行使用メモリ 71,680 KB
最終ジャッジ日時 2024-05-04 09:11:24
合計ジャッジ時間 11,781 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,220 KB
testcase_01 AC 52 ms
36,916 KB
testcase_02 AC 52 ms
36,936 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 285 ms
61,544 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 81 ms
39,016 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 55 ms
36,680 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 52 ms
36,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.math.BigInteger;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] b = new int[n];
		for (int i = 0; i < n; i++) {
			b[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		int mod = 998244353;
		Kaijou2 kai = new Kaijou2(n, 2);

		int n1 = n - 1;
		int a = 0;
		int x = 0;
		int y = 0;
		for (int i = 0; i < n; i++) {
			long v = kai.comb(n1, i);
			if (v % 2 == 1) {
				if (b[i] == 1) {
					a++;
				} else if (b[i] == -1) {
					x++;
				}
			}
			if (b[i] == -1) {
				y++;
			}
		}

		long ans = 0;
		if (a == 0) {
			for (int i = 1; i <= x; i += 2) {
				ans += kai.comb(x, i);
			}
		} else {
			for (int i = 0; i <= x; i += 2) {
				ans += kai.comb(x, i);
			}
		}
		ans %= mod;
		ans *= power(2, y - x, mod);
		ans %= mod;
		System.out.println(ans);
	}

	static long power(long x, long n, int m) {
		if (n == 0) {
			return 1;
		}
		long val = power(x, n / 2, m);
		val = val * val % m;
		if (n % 2 == 1) {
			val = val * x % m;
		}
		return val;
	}

	static class Kaijou2 {
		long[] p, pi;
		int[] im, cm;
		int m;

		public Kaijou2(int n, int mod) {
			n++;
			m = mod;
			p = new long[n];
			pi = new long[n];
			im = new int[n];
			cm = new int[n];
			p[0] = 1;
			pi[0] = 1;
			for (int i = 1; i < n; i++) {
				int i2 = i;
				while (i2 % m == 0) {
					cm[i]++;
					i2 /= m;
				}
				p[i] = p[i - 1] * i2 % m;
				im[i] = i2;
				cm[i] += cm[i - 1];
			}
			pi[n - 1] = BigInteger.valueOf(p[n - 1])
					.modInverse(BigInteger.valueOf(m)).longValue();
			for (int i = n - 1; i > 1; i--) {
				pi[i - 1] = pi[i] * im[i] % m;
			}
		}

		public long comb(int n, int r) {
			if (n < r) return 0;
			if (cm[n] > cm[r] + cm[n - r]) {
				return 0;
			}
			return p[n] * pi[r] % m * pi[n - r] % m;
		}

		public long perm(int n, int r) {
			if (n < r) return 0;
			if (cm[n] > cm[n - r]) {
				return 0;
			}
			return p[n] * pi[n - r] % m;
		}
	}
}
0