結果

問題 No.1741 Arrays and XOR Procedure
ユーザー ShirotsumeShirotsume
提出日時 2021-10-15 22:56:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 105 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 97,208 KB
最終ジャッジ日時 2024-05-04 04:09:55
合計ジャッジ時間 3,479 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
53,020 KB
testcase_01 AC 30 ms
53,036 KB
testcase_02 AC 30 ms
51,812 KB
testcase_03 WA -
testcase_04 AC 32 ms
52,444 KB
testcase_05 AC 61 ms
96,160 KB
testcase_06 WA -
testcase_07 AC 68 ms
96,052 KB
testcase_08 AC 61 ms
96,512 KB
testcase_09 WA -
testcase_10 AC 60 ms
92,144 KB
testcase_11 AC 55 ms
84,812 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 53 ms
82,284 KB
testcase_15 AC 58 ms
89,420 KB
testcase_16 WA -
testcase_17 AC 46 ms
69,792 KB
testcase_18 AC 58 ms
83,584 KB
testcase_19 AC 36 ms
59,148 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 58 ms
85,804 KB
testcase_23 AC 45 ms
68,444 KB
testcase_24 WA -
testcase_25 AC 64 ms
97,028 KB
testcase_26 AC 45 ms
73,088 KB
testcase_27 WA -
testcase_28 AC 53 ms
85,724 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 45 ms
74,020 KB
testcase_33 AC 49 ms
77,200 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 43 ms
74,056 KB
testcase_38 AC 63 ms
95,576 KB
testcase_39 WA -
testcase_40 AC 33 ms
58,148 KB
testcase_41 AC 38 ms
64,948 KB
testcase_42 AC 34 ms
60,960 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
b = list(map(int,input().split()))
mod = 998244353

print(pow(2, b.count(-1), mod) // 2)
0