結果

問題 No.1741 Arrays and XOR Procedure
ユーザー ああいいああいい
提出日時 2021-12-08 12:44:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 689 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 24,104 KB
最終ジャッジ日時 2024-07-16 04:56:51
合計ジャッジ時間 6,252 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 258 ms
24,104 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 165 ms
14,084 KB
testcase_06 AC 216 ms
19,524 KB
testcase_07 AC 224 ms
19,532 KB
testcase_08 AC 159 ms
14,080 KB
testcase_09 AC 182 ms
16,320 KB
testcase_10 AC 182 ms
16,576 KB
testcase_11 AC 149 ms
15,444 KB
testcase_12 AC 124 ms
14,492 KB
testcase_13 AC 177 ms
16,312 KB
testcase_14 AC 134 ms
15,020 KB
testcase_15 AC 164 ms
16,064 KB
testcase_16 AC 35 ms
11,136 KB
testcase_17 AC 78 ms
12,868 KB
testcase_18 AC 139 ms
15,076 KB
testcase_19 AC 34 ms
11,008 KB
testcase_20 AC 194 ms
17,572 KB
testcase_21 AC 158 ms
15,804 KB
testcase_22 AC 145 ms
15,496 KB
testcase_23 AC 74 ms
12,800 KB
testcase_24 AC 38 ms
11,264 KB
testcase_25 AC 188 ms
17,536 KB
testcase_26 AC 96 ms
13,424 KB
testcase_27 AC 34 ms
11,008 KB
testcase_28 AC 147 ms
15,536 KB
testcase_29 AC 166 ms
16,112 KB
testcase_30 AC 146 ms
15,484 KB
testcase_31 AC 35 ms
11,008 KB
testcase_32 AC 101 ms
13,288 KB
testcase_33 AC 114 ms
14,260 KB
testcase_34 AC 60 ms
12,032 KB
testcase_35 WA -
testcase_36 AC 44 ms
11,392 KB
testcase_37 AC 101 ms
13,304 KB
testcase_38 AC 197 ms
17,448 KB
testcase_39 AC 90 ms
12,992 KB
testcase_40 AC 32 ms
10,752 KB
testcase_41 AC 61 ms
11,904 KB
testcase_42 AC 36 ms
11,136 KB
testcase_43 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

power = [0] * N
i = 2
while i < N:
    for j in range(1,(N-1)//i + 1):
        power[i*j] += 1
    i *= 2
now = 0
count1 = 0
count2 = 0
S = 0
if B[0] == -1:
    count1 += 1
else:
    S += B[0]
if B[N-1] == -1:
    count1 += 1
else:
    S += B[N-1]
    
for i in range(1,N-1):
    now = now + power[N-i] - power[i]
    if now > 0:
        if B[i] == -1:count2 += 1
    else:
        if B[i] == -1:count1 += 1
        else:S += B[i]
if count1 == 0 and S % 2 == 0:
    print(0)
    exit()
if count1 == 0:u = count2
else:u = count1 + count2 -1

u = count1 + count2 - 1
t = 1
for _ in range(u):
    t *= 2
    t %= P
print(t)
0