結果

問題 No.1741 Arrays and XOR Procedure
ユーザー titiatitia
提出日時 2021-11-12 22:48:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 348 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 23,796 KB
最終ジャッジ日時 2024-11-25 20:36:13
合計ジャッジ時間 3,440 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 77 ms
23,796 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 WA -
testcase_06 AC 75 ms
19,208 KB
testcase_07 AC 76 ms
19,092 KB
testcase_08 WA -
testcase_09 AC 68 ms
16,788 KB
testcase_10 AC 68 ms
16,404 KB
testcase_11 AC 60 ms
15,604 KB
testcase_12 AC 52 ms
14,208 KB
testcase_13 AC 67 ms
16,008 KB
testcase_14 AC 56 ms
14,760 KB
testcase_15 AC 66 ms
15,892 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 WA -
testcase_18 AC 55 ms
14,940 KB
testcase_19 AC 28 ms
10,880 KB
testcase_20 WA -
testcase_21 AC 60 ms
15,420 KB
testcase_22 WA -
testcase_23 AC 38 ms
12,288 KB
testcase_24 AC 29 ms
10,880 KB
testcase_25 AC 71 ms
17,640 KB
testcase_26 WA -
testcase_27 AC 28 ms
10,880 KB
testcase_28 AC 61 ms
15,204 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 46 ms
13,440 KB
testcase_33 AC 51 ms
14,008 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 29 ms
11,136 KB
testcase_37 AC 42 ms
13,440 KB
testcase_38 AC 68 ms
16,776 KB
testcase_39 AC 42 ms
12,672 KB
testcase_40 AC 26 ms
10,624 KB
testcase_41 AC 36 ms
11,776 KB
testcase_42 WA -
testcase_43 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
B=list(map(int,input().split()))

mod=998244353

if N%2==1:
    x=B.count(-1)

    if B[0]!=-1 and B[-1]!=-1:
        if B[0]^B[-1]==1:
            print(pow(2,x,mod))
        else:
            print(0)
    else:
        print(pow(2,x-1,mod))

else:
    x=B.count(-1)
    print(pow(2,x-1,mod))
0