結果

問題 No.1741 Arrays and XOR Procedure
ユーザー ああいいああいい
提出日時 2021-12-08 12:46:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,108 KB
最終ジャッジ日時 2024-07-16 04:57:52
合計ジャッジ時間 6,301 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 251 ms
24,108 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 162 ms
13,952 KB
testcase_06 AC 220 ms
19,264 KB
testcase_07 AC 214 ms
19,316 KB
testcase_08 AC 162 ms
14,080 KB
testcase_09 AC 176 ms
16,572 KB
testcase_10 AC 180 ms
16,576 KB
testcase_11 AC 147 ms
15,448 KB
testcase_12 AC 124 ms
14,372 KB
testcase_13 AC 176 ms
16,440 KB
testcase_14 AC 130 ms
14,768 KB
testcase_15 AC 165 ms
16,064 KB
testcase_16 AC 36 ms
11,136 KB
testcase_17 AC 78 ms
12,756 KB
testcase_18 AC 138 ms
14,948 KB
testcase_19 AC 37 ms
11,008 KB
testcase_20 AC 196 ms
17,444 KB
testcase_21 AC 152 ms
15,804 KB
testcase_22 AC 140 ms
15,248 KB
testcase_23 AC 71 ms
12,800 KB
testcase_24 AC 38 ms
11,264 KB
testcase_25 AC 201 ms
17,540 KB
testcase_26 AC 94 ms
13,424 KB
testcase_27 AC 33 ms
11,008 KB
testcase_28 AC 151 ms
15,512 KB
testcase_29 AC 170 ms
16,112 KB
testcase_30 AC 146 ms
15,480 KB
testcase_31 AC 34 ms
11,008 KB
testcase_32 AC 99 ms
13,308 KB
testcase_33 AC 113 ms
14,264 KB
testcase_34 AC 60 ms
12,032 KB
testcase_35 AC 29 ms
10,752 KB
testcase_36 AC 42 ms
11,264 KB
testcase_37 AC 92 ms
13,180 KB
testcase_38 AC 202 ms
17,448 KB
testcase_39 AC 86 ms
12,992 KB
testcase_40 AC 29 ms
10,752 KB
testcase_41 AC 61 ms
11,904 KB
testcase_42 AC 34 ms
11,008 KB
testcase_43 AC 27 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

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