結果

問題 No.1741 Arrays and XOR Procedure
ユーザー puznekopuzneko
提出日時 2021-11-25 00:11:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 990 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 112,512 KB
最終ジャッジ日時 2024-06-27 09:50:13
合計ジャッジ時間 4,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 35 ms
52,480 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 91 ms
111,104 KB
testcase_04 AC 36 ms
52,480 KB
testcase_05 AC 91 ms
110,464 KB
testcase_06 AC 108 ms
112,512 KB
testcase_07 AC 103 ms
112,256 KB
testcase_08 AC 96 ms
110,228 KB
testcase_09 AC 89 ms
104,576 KB
testcase_10 AC 88 ms
105,344 KB
testcase_11 AC 92 ms
104,960 KB
testcase_12 AC 76 ms
92,032 KB
testcase_13 AC 89 ms
104,448 KB
testcase_14 AC 89 ms
100,096 KB
testcase_15 AC 85 ms
100,352 KB
testcase_16 AC 46 ms
65,024 KB
testcase_17 AC 63 ms
80,512 KB
testcase_18 AC 86 ms
100,864 KB
testcase_19 AC 50 ms
64,640 KB
testcase_20 AC 95 ms
110,592 KB
testcase_21 AC 92 ms
105,856 KB
testcase_22 AC 82 ms
97,920 KB
testcase_23 AC 63 ms
78,080 KB
testcase_24 AC 49 ms
65,408 KB
testcase_25 AC 93 ms
109,916 KB
testcase_26 AC 66 ms
83,328 KB
testcase_27 AC 47 ms
63,744 KB
testcase_28 AC 86 ms
98,944 KB
testcase_29 AC 86 ms
101,632 KB
testcase_30 AC 93 ms
103,168 KB
testcase_31 AC 46 ms
63,360 KB
testcase_32 AC 71 ms
85,632 KB
testcase_33 AC 72 ms
87,680 KB
testcase_34 AC 55 ms
72,320 KB
testcase_35 AC 37 ms
52,992 KB
testcase_36 AC 47 ms
66,176 KB
testcase_37 AC 68 ms
84,352 KB
testcase_38 AC 99 ms
111,744 KB
testcase_39 AC 68 ms
83,200 KB
testcase_40 AC 46 ms
61,696 KB
testcase_41 AC 57 ms
72,960 KB
testcase_42 AC 49 ms
66,048 KB
testcase_43 AC 34 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
n, *b = map(int, stdin.read().split())
p = 998244353

def powmod(n,pow,mod):
    val = 1
    while pow > 0:
        if pow & 1:
            val = (val * n) % mod
        pow = pow >> 1
        n = (n * n) % mod
    return val

numof2 = [0 for i in range(n+1)]
val = 2
while val <= n:
    kari = val
    while kari <= n:
        numof2[kari] += 1
        kari += val
    val = val * 2

kaijo = [0 for i in range(n+1)]
for i in range(1,n+1):
    kaijo[i] = kaijo[i-1] + numof2[i]

nowans = 0
oddnum = 0
evennum = 0
for i in range(n):
    kari = kaijo[n-1] - kaijo[i] - kaijo[n-1-i]
    if kari >= 1:
        if b[i] == -1:
            evennum += 1
    else:
        if b[i] == -1:
            oddnum += 1
        else:
            nowans = nowans ^ b[i]

if oddnum == 0:
    if nowans == 0:
        print("{}".format(0))
    else:
        ans = powmod(2,evennum,p)
        print("{}".format(ans))
else:
    ans = powmod(2,evennum+oddnum-1,p)
    print("{}".format(ans))
0