結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 250 ms
24,236 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 162 ms
14,084 KB
testcase_06 AC 208 ms
19,268 KB
testcase_07 AC 221 ms
19,404 KB
testcase_08 AC 165 ms
14,080 KB
testcase_09 AC 186 ms
16,448 KB
testcase_10 AC 185 ms
16,576 KB
testcase_11 AC 147 ms
15,428 KB
testcase_12 AC 121 ms
14,368 KB
testcase_13 AC 172 ms
16,444 KB
testcase_14 AC 131 ms
14,900 KB
testcase_15 AC 171 ms
16,068 KB
testcase_16 AC 36 ms
11,136 KB
testcase_17 AC 80 ms
12,872 KB
testcase_18 AC 141 ms
14,952 KB
testcase_19 AC 36 ms
11,008 KB
testcase_20 AC 200 ms
17,568 KB
testcase_21 AC 165 ms
15,808 KB
testcase_22 AC 141 ms
15,372 KB
testcase_23 AC 74 ms
12,800 KB
testcase_24 AC 40 ms
11,264 KB
testcase_25 AC 201 ms
17,532 KB
testcase_26 AC 97 ms
13,420 KB
testcase_27 AC 33 ms
11,008 KB
testcase_28 AC 156 ms
15,536 KB
testcase_29 AC 177 ms
15,988 KB
testcase_30 AC 147 ms
15,348 KB
testcase_31 WA -
testcase_32 AC 100 ms
13,424 KB
testcase_33 AC 112 ms
14,136 KB
testcase_34 AC 62 ms
11,904 KB
testcase_35 WA -
testcase_36 AC 42 ms
11,264 KB
testcase_37 AC 92 ms
13,176 KB
testcase_38 AC 197 ms
17,320 KB
testcase_39 AC 91 ms
12,996 KB
testcase_40 AC 30 ms
10,752 KB
testcase_41 AC 57 ms
11,904 KB
testcase_42 AC 36 ms
11,008 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

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[0]
    
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