結果

問題 No.1741 Arrays and XOR Procedure
ユーザー mkawa2mkawa2
提出日時 2021-11-12 22:41:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,074 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 96,512 KB
最終ジャッジ日時 2024-05-04 10:11:44
合計ジャッジ時間 4,566 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 80 ms
96,128 KB
testcase_04 AC 42 ms
51,712 KB
testcase_05 AC 80 ms
96,512 KB
testcase_06 AC 84 ms
95,744 KB
testcase_07 AC 84 ms
96,000 KB
testcase_08 AC 80 ms
96,512 KB
testcase_09 AC 77 ms
91,008 KB
testcase_10 AC 78 ms
91,648 KB
testcase_11 AC 70 ms
84,480 KB
testcase_12 AC 65 ms
78,720 KB
testcase_13 AC 77 ms
91,008 KB
testcase_14 AC 66 ms
81,408 KB
testcase_15 AC 75 ms
87,552 KB
testcase_16 AC 46 ms
59,520 KB
testcase_17 WA -
testcase_18 AC 68 ms
81,280 KB
testcase_19 AC 46 ms
59,008 KB
testcase_20 WA -
testcase_21 AC 72 ms
87,040 KB
testcase_22 WA -
testcase_23 AC 55 ms
68,096 KB
testcase_24 AC 47 ms
60,160 KB
testcase_25 AC 81 ms
95,104 KB
testcase_26 WA -
testcase_27 AC 45 ms
59,392 KB
testcase_28 AC 71 ms
84,736 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 60 ms
72,832 KB
testcase_33 AC 64 ms
76,544 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 47 ms
60,672 KB
testcase_37 AC 59 ms
72,448 KB
testcase_38 AC 82 ms
94,720 KB
testcase_39 AC 58 ms
70,272 KB
testcase_40 AC 44 ms
58,240 KB
testcase_41 AC 51 ms
63,744 KB
testcase_42 WA -
testcase_43 AC 41 ms
51,968 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

n = II()
bb = LI()
c = bb.count(-1)

if n & 1:
    if c == 0:
        if bb[0] ^ bb[-1] == 1:
            ans = 1
        else:
            ans = 0
    elif bb[0] == -1 or bb[-1] == -1:
        ans = pow(2, c-1, md)
    elif bb[0] == bb[-1]:
        ans = 0
    else:
        ans = pow(2, c, md)
else:
    if c == 0:
        x = 0
        for b in bb: x ^= b
        ans = x
    else:
        ans=pow(2,c-1,md)

print(ans)
0