結果

問題 No.1741 Arrays and XOR Procedure
ユーザー mkawa2mkawa2
提出日時 2021-11-12 23:10:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 1,105 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 114,816 KB
最終ジャッジ日時 2024-05-04 10:51:01
合計ジャッジ時間 4,106 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 36 ms
52,736 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 86 ms
114,816 KB
testcase_04 AC 33 ms
52,128 KB
testcase_05 AC 81 ms
113,920 KB
testcase_06 AC 88 ms
114,560 KB
testcase_07 AC 87 ms
114,816 KB
testcase_08 AC 83 ms
114,304 KB
testcase_09 AC 78 ms
107,392 KB
testcase_10 AC 80 ms
108,032 KB
testcase_11 AC 74 ms
98,560 KB
testcase_12 AC 65 ms
90,112 KB
testcase_13 AC 79 ms
108,288 KB
testcase_14 AC 69 ms
94,464 KB
testcase_15 AC 74 ms
102,656 KB
testcase_16 AC 47 ms
64,896 KB
testcase_17 AC 56 ms
77,824 KB
testcase_18 AC 72 ms
94,336 KB
testcase_19 AC 45 ms
64,000 KB
testcase_20 AC 89 ms
113,536 KB
testcase_21 AC 79 ms
102,400 KB
testcase_22 AC 73 ms
97,408 KB
testcase_23 AC 55 ms
76,160 KB
testcase_24 AC 43 ms
65,024 KB
testcase_25 AC 87 ms
113,536 KB
testcase_26 AC 58 ms
81,792 KB
testcase_27 AC 48 ms
64,640 KB
testcase_28 AC 73 ms
98,176 KB
testcase_29 AC 79 ms
102,656 KB
testcase_30 AC 78 ms
98,688 KB
testcase_31 AC 46 ms
63,744 KB
testcase_32 AC 61 ms
82,304 KB
testcase_33 AC 62 ms
86,784 KB
testcase_34 AC 51 ms
71,040 KB
testcase_35 AC 38 ms
53,376 KB
testcase_36 AC 44 ms
65,408 KB
testcase_37 AC 57 ms
82,304 KB
testcase_38 AC 84 ms
113,280 KB
testcase_39 AC 55 ms
79,360 KB
testcase_40 AC 40 ms
61,312 KB
testcase_41 AC 47 ms
70,528 KB
testcase_42 AC 45 ms
63,640 KB
testcase_43 AC 35 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