結果

問題 No.1741 Arrays and XOR Procedure
ユーザー Eki1009Eki1009
提出日時 2021-11-12 22:20:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,268 KB
最終ジャッジ日時 2024-05-04 09:20:05
合計ジャッジ時間 4,028 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,928 KB
testcase_01 AC 30 ms
52,472 KB
testcase_02 AC 31 ms
52,824 KB
testcase_03 AC 77 ms
106,344 KB
testcase_04 AC 31 ms
52,276 KB
testcase_05 AC 80 ms
105,188 KB
testcase_06 AC 93 ms
107,268 KB
testcase_07 AC 88 ms
106,356 KB
testcase_08 AC 76 ms
104,304 KB
testcase_09 AC 82 ms
100,824 KB
testcase_10 AC 80 ms
101,936 KB
testcase_11 AC 74 ms
94,044 KB
testcase_12 AC 65 ms
86,144 KB
testcase_13 AC 79 ms
101,368 KB
testcase_14 AC 69 ms
90,524 KB
testcase_15 AC 74 ms
97,280 KB
testcase_16 AC 47 ms
64,504 KB
testcase_17 AC 54 ms
76,348 KB
testcase_18 AC 70 ms
91,268 KB
testcase_19 AC 42 ms
63,360 KB
testcase_20 AC 85 ms
106,624 KB
testcase_21 AC 73 ms
96,396 KB
testcase_22 AC 68 ms
93,184 KB
testcase_23 AC 54 ms
73,856 KB
testcase_24 AC 42 ms
63,872 KB
testcase_25 AC 83 ms
106,496 KB
testcase_26 AC 57 ms
79,504 KB
testcase_27 AC 41 ms
62,848 KB
testcase_28 AC 71 ms
93,184 KB
testcase_29 AC 76 ms
98,252 KB
testcase_30 AC 72 ms
94,236 KB
testcase_31 AC 41 ms
62,720 KB
testcase_32 AC 65 ms
79,744 KB
testcase_33 AC 64 ms
84,236 KB
testcase_34 AC 51 ms
69,788 KB
testcase_35 AC 35 ms
52,868 KB
testcase_36 AC 43 ms
65,408 KB
testcase_37 AC 58 ms
78,464 KB
testcase_38 AC 84 ms
106,788 KB
testcase_39 AC 57 ms
79,032 KB
testcase_40 AC 40 ms
62,272 KB
testcase_41 AC 48 ms
71,772 KB
testcase_42 AC 45 ms
65,392 KB
testcase_43 AC 31 ms
52,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n,*B = map(int,open(0).read().split())
x,y = 1,0
for k,b in enumerate(B):
    s = t = 0
    if b != 0:
        s,t = (s+x)%mod,(y+t)%mod
        if n-1&k == k:
            s,t = t,s
    if b != 1:
        s,t = (s+x)%mod,(y+t)%mod
    x,y = s,t
print(y)
0