結果

問題 No.1741 Arrays and XOR Procedure
ユーザー gr1msl3ygr1msl3y
提出日時 2021-11-12 21:52:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 249 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 98,864 KB
最終ジャッジ日時 2024-05-04 08:22:35
合計ジャッジ時間 3,614 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,712 KB
testcase_01 AC 32 ms
51,456 KB
testcase_02 AC 32 ms
51,328 KB
testcase_03 AC 69 ms
97,280 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 64 ms
96,640 KB
testcase_06 AC 73 ms
97,024 KB
testcase_07 AC 72 ms
97,024 KB
testcase_08 AC 65 ms
96,128 KB
testcase_09 WA -
testcase_10 AC 65 ms
93,184 KB
testcase_11 AC 61 ms
85,888 KB
testcase_12 AC 53 ms
79,872 KB
testcase_13 AC 63 ms
92,800 KB
testcase_14 AC 56 ms
82,688 KB
testcase_15 AC 62 ms
89,600 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 38 ms
59,904 KB
testcase_20 WA -
testcase_21 AC 59 ms
88,448 KB
testcase_22 WA -
testcase_23 AC 44 ms
69,376 KB
testcase_24 AC 36 ms
61,056 KB
testcase_25 AC 67 ms
96,640 KB
testcase_26 WA -
testcase_27 AC 37 ms
60,416 KB
testcase_28 AC 57 ms
85,632 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 50 ms
73,344 KB
testcase_33 AC 52 ms
77,440 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 39 ms
62,592 KB
testcase_37 AC 50 ms
73,088 KB
testcase_38 AC 70 ms
96,640 KB
testcase_39 AC 45 ms
71,808 KB
testcase_40 AC 36 ms
59,776 KB
testcase_41 AC 40 ms
65,280 KB
testcase_42 WA -
testcase_43 AC 31 ms
51,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ct = 0
for i in range(1, N-1):
    if B[i] == -1:
        ct += 1

a = B[0]
b = B[-1]
if a == b:
    if a >= 0:
        print(0)
        exit()
    ct += 1
print(pow(2, ct, MOD))
0