結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
51,840 KB
testcase_01 AC 30 ms
51,840 KB
testcase_02 AC 32 ms
51,968 KB
testcase_03 AC 70 ms
96,896 KB
testcase_04 AC 35 ms
52,140 KB
testcase_05 AC 71 ms
95,612 KB
testcase_06 AC 70 ms
96,396 KB
testcase_07 AC 71 ms
96,528 KB
testcase_08 AC 67 ms
95,784 KB
testcase_09 AC 65 ms
91,896 KB
testcase_10 AC 62 ms
92,160 KB
testcase_11 AC 58 ms
84,492 KB
testcase_12 AC 51 ms
78,464 KB
testcase_13 AC 60 ms
91,520 KB
testcase_14 AC 52 ms
81,480 KB
testcase_15 AC 58 ms
88,192 KB
testcase_16 AC 34 ms
59,464 KB
testcase_17 AC 42 ms
69,248 KB
testcase_18 AC 52 ms
81,664 KB
testcase_19 AC 35 ms
59,136 KB
testcase_20 AC 64 ms
95,872 KB
testcase_21 AC 58 ms
87,216 KB
testcase_22 AC 56 ms
84,352 KB
testcase_23 AC 41 ms
68,096 KB
testcase_24 AC 34 ms
60,288 KB
testcase_25 AC 64 ms
95,872 KB
testcase_26 AC 46 ms
72,844 KB
testcase_27 WA -
testcase_28 AC 58 ms
84,352 KB
testcase_29 AC 60 ms
87,936 KB
testcase_30 AC 58 ms
84,396 KB
testcase_31 WA -
testcase_32 AC 45 ms
72,576 KB
testcase_33 AC 49 ms
76,672 KB
testcase_34 AC 40 ms
64,768 KB
testcase_35 WA -
testcase_36 AC 35 ms
60,544 KB
testcase_37 AC 45 ms
72,704 KB
testcase_38 AC 64 ms
95,488 KB
testcase_39 AC 44 ms
70,884 KB
testcase_40 AC 34 ms
58,240 KB
testcase_41 AC 38 ms
64,128 KB
testcase_42 AC 33 ms
59,392 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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