結果

問題 No.1741 Arrays and XOR Procedure
ユーザー mkawa2mkawa2
提出日時 2021-11-12 23:10:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 1,105 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 114,688 KB
最終ジャッジ日時 2024-11-25 21:17:54
合計ジャッジ時間 4,811 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 98 ms
114,688 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 94 ms
114,048 KB
testcase_06 AC 98 ms
114,612 KB
testcase_07 AC 98 ms
114,304 KB
testcase_08 AC 93 ms
113,664 KB
testcase_09 AC 90 ms
107,520 KB
testcase_10 AC 91 ms
107,520 KB
testcase_11 AC 83 ms
98,048 KB
testcase_12 AC 75 ms
90,240 KB
testcase_13 AC 92 ms
107,808 KB
testcase_14 AC 79 ms
94,464 KB
testcase_15 AC 85 ms
102,784 KB
testcase_16 AC 51 ms
64,256 KB
testcase_17 AC 63 ms
77,568 KB
testcase_18 AC 79 ms
94,592 KB
testcase_19 AC 51 ms
63,232 KB
testcase_20 AC 94 ms
113,408 KB
testcase_21 AC 84 ms
102,528 KB
testcase_22 AC 79 ms
97,664 KB
testcase_23 AC 60 ms
75,648 KB
testcase_24 AC 50 ms
64,256 KB
testcase_25 AC 94 ms
113,536 KB
testcase_26 AC 66 ms
81,664 KB
testcase_27 AC 52 ms
64,640 KB
testcase_28 AC 83 ms
97,536 KB
testcase_29 AC 87 ms
102,656 KB
testcase_30 AC 82 ms
98,432 KB
testcase_31 AC 52 ms
64,256 KB
testcase_32 AC 68 ms
81,536 KB
testcase_33 AC 71 ms
86,656 KB
testcase_34 AC 55 ms
71,040 KB
testcase_35 AC 40 ms
52,956 KB
testcase_36 AC 49 ms
64,768 KB
testcase_37 AC 67 ms
82,304 KB
testcase_38 AC 97 ms
113,920 KB
testcase_39 AC 64 ms
79,232 KB
testcase_40 AC 48 ms
61,568 KB
testcase_41 AC 55 ms
70,784 KB
testcase_42 AC 49 ms
63,488 KB
testcase_43 AC 39 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = 18446744073709551615
inf = 4294967295
# md = 10**9+7
md = 998244353

def nCr(n, r):
    n ^= mask
    if n & r: return 0
    return 1

mask = (1 << 18)-1
n = II()
bb = LI()
cc = []
for i in range(n):
    cc.append(nCr(n-1, i))
# print(cc)

cnt = [0, 0]
for b, c in zip(bb, cc):
    if b == -1: cnt[c] += 1

if cnt[1] == 0:
    x = 0
    for b, c in zip(bb, cc):
        if b == -1: continue
        x ^= b*c
    if x == 1: ans = pow(2, cnt[0], md)
    else: ans = 0

else:
    ans = pow(2, cnt[0]+cnt[1]-1, md)

print(ans)
0