結果

問題 No.983 Convolution
ユーザー ganmodokix
提出日時 2020-02-11 16:53:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 550 ms / 2,000 ms
コード長 713 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 156,472 KB
最終ジャッジ日時 2024-10-01 08:05:35
合計ジャッジ時間 9,524 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import random
# import numpy as np

def gcd(x: int, y: int) -> int:
    if x < y: x, y = y, x
    while y > 0:
        x %= y
        x, y = y, x
    return x

# code here
n = int(input())
a = [*map(lambda x: int(x) if x != "-1" else 0, input().split())]

mask = 1
while mask < n:
    for i in range(n):
        if not i & mask and (i | mask) < n:
            a[i] += a[i | mask]
    mask <<= 1

for i in range(n):
    a[i] **= 2

mask = 1
while mask < n:
    for i in range(n):
        if not i & mask and (i | mask) < n:
            a[i] -= a[i | mask]
    mask <<= 1

ans = -1
for x in a:
    if x == 0: continue
    if ans == -1:
        ans = x
    else:
        ans = gcd(ans, abs(x))
print(ans)
0