結果

問題 No.983 Convolution
ユーザー 👑 rin204rin204
提出日時 2022-03-25 19:47:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 450 ms / 2,000 ms
コード長 797 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 164,328 KB
最終ジャッジ日時 2024-10-14 03:50:27
合計ジャッジ時間 9,900 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 272 ms
117,092 KB
testcase_04 AC 241 ms
109,128 KB
testcase_05 AC 223 ms
104,804 KB
testcase_06 AC 386 ms
145,736 KB
testcase_07 AC 393 ms
143,912 KB
testcase_08 AC 105 ms
82,688 KB
testcase_09 AC 144 ms
90,880 KB
testcase_10 AC 91 ms
77,952 KB
testcase_11 AC 108 ms
83,072 KB
testcase_12 AC 445 ms
159,280 KB
testcase_13 AC 137 ms
91,136 KB
testcase_14 AC 154 ms
92,672 KB
testcase_15 AC 272 ms
117,608 KB
testcase_16 AC 226 ms
104,568 KB
testcase_17 AC 409 ms
150,124 KB
testcase_18 AC 103 ms
81,920 KB
testcase_19 AC 221 ms
104,448 KB
testcase_20 AC 450 ms
164,328 KB
testcase_21 AC 260 ms
116,416 KB
testcase_22 AC 110 ms
83,456 KB
testcase_23 AC 125 ms
100,352 KB
testcase_24 AC 70 ms
70,912 KB
testcase_25 AC 69 ms
69,504 KB
testcase_26 AC 115 ms
91,648 KB
testcase_27 AC 88 ms
81,280 KB
testcase_28 AC 218 ms
105,000 KB
testcase_29 AC 427 ms
162,660 KB
testcase_30 AC 219 ms
104,492 KB
testcase_31 AC 141 ms
91,776 KB
testcase_32 AC 228 ms
106,908 KB
testcase_33 AC 41 ms
51,968 KB
testcase_34 AC 41 ms
52,096 KB
testcase_35 AC 41 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def convolve_and(A, B):
    n = max(len(A), len(B))
    l = ((n - 1).bit_length())
    n = 1 << l
    A += [0] * (n - len(A))
    B += [0] * (n - len(B))
    
    def f(A):
        for i in range(l):
            for bit in range(n):
                if not bit >> i & 1:
                    A[bit] += A[bit ^ (1 << i)]
    
    def invf(A):
        for i in range(l):
            for bit in range(n):
                if not bit >> i & 1:
                    A[bit] -= A[bit ^ (1 << i)]
    
    f(A)
    f(B)
    C = [a * b for a, b in zip(A, B)]
    invf(C)
    return C

from math import gcd

n = int(input())
A = list(map(int, input().split()))
for i in range(n):
    if A[i] == -1:
        A[i] = 0
C = convolve_and(A[:], A[:])
g = 0
for c in C:
    g = gcd(c, g)
if g == 0:
    g = -1
print(g)
0