結果

問題 No.983 Convolution
ユーザー ganmodokix
提出日時 2020-02-11 16:52:22
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 713 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 30,404 KB
最終ジャッジ日時 2024-10-01 08:05:03
合計ジャッジ時間 28,021 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32 TLE * 1
権限があれば一括ダウンロードができます

ソースコード

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