結果

問題 No.1741 Arrays and XOR Procedure
ユーザー CuriousFairy315CuriousFairy315
提出日時 2021-11-12 22:54:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 735 bytes
コンパイル時間 1,802 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 63,460 KB
最終ジャッジ日時 2024-05-04 10:30:58
合計ジャッジ時間 20,745 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,892 KB
testcase_01 AC 98 ms
52,428 KB
testcase_02 AC 117 ms
53,956 KB
testcase_03 AC 526 ms
63,460 KB
testcase_04 AC 102 ms
39,996 KB
testcase_05 WA -
testcase_06 AC 522 ms
49,540 KB
testcase_07 AC 531 ms
52,748 KB
testcase_08 AC 530 ms
53,508 KB
testcase_09 AC 482 ms
52,612 KB
testcase_10 AC 503 ms
49,040 KB
testcase_11 AC 552 ms
48,560 KB
testcase_12 AC 468 ms
48,384 KB
testcase_13 AC 560 ms
48,796 KB
testcase_14 AC 512 ms
48,232 KB
testcase_15 AC 484 ms
48,472 KB
testcase_16 AC 227 ms
46,580 KB
testcase_17 AC 386 ms
48,180 KB
testcase_18 AC 506 ms
48,336 KB
testcase_19 AC 200 ms
45,460 KB
testcase_20 AC 616 ms
49,976 KB
testcase_21 AC 563 ms
48,672 KB
testcase_22 AC 473 ms
49,620 KB
testcase_23 AC 411 ms
48,184 KB
testcase_24 AC 228 ms
47,372 KB
testcase_25 AC 546 ms
50,232 KB
testcase_26 AC 427 ms
48,240 KB
testcase_27 WA -
testcase_28 AC 549 ms
48,608 KB
testcase_29 AC 594 ms
48,896 KB
testcase_30 AC 525 ms
48,476 KB
testcase_31 WA -
testcase_32 AC 380 ms
46,896 KB
testcase_33 AC 429 ms
48,444 KB
testcase_34 AC 303 ms
46,452 KB
testcase_35 WA -
testcase_36 AC 249 ms
47,480 KB
testcase_37 AC 428 ms
48,220 KB
testcase_38 AC 597 ms
49,828 KB
testcase_39 AC 345 ms
57,780 KB
testcase_40 AC 170 ms
43,848 KB
testcase_41 AC 296 ms
47,724 KB
testcase_42 AC 200 ms
45,776 KB
testcase_43 AC 111 ms
40,520 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 + 1) == 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