結果

問題 No.983 Convolution
ユーザー ganmodokixganmodokix
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,260 KB
testcase_01 AC 44 ms
54,736 KB
testcase_02 AC 42 ms
54,344 KB
testcase_03 AC 388 ms
121,448 KB
testcase_04 AC 319 ms
107,496 KB
testcase_05 AC 293 ms
102,624 KB
testcase_06 AC 440 ms
132,052 KB
testcase_07 AC 434 ms
128,332 KB
testcase_08 AC 129 ms
82,312 KB
testcase_09 AC 167 ms
86,772 KB
testcase_10 AC 104 ms
79,132 KB
testcase_11 AC 133 ms
82,352 KB
testcase_12 AC 541 ms
150,892 KB
testcase_13 AC 176 ms
87,204 KB
testcase_14 AC 208 ms
90,948 KB
testcase_15 AC 394 ms
121,468 KB
testcase_16 AC 290 ms
103,320 KB
testcase_17 AC 467 ms
135,368 KB
testcase_18 AC 122 ms
80,908 KB
testcase_19 AC 280 ms
101,964 KB
testcase_20 AC 550 ms
149,912 KB
testcase_21 AC 380 ms
121,080 KB
testcase_22 AC 134 ms
82,112 KB
testcase_23 AC 96 ms
90,648 KB
testcase_24 AC 66 ms
72,180 KB
testcase_25 AC 62 ms
70,508 KB
testcase_26 AC 83 ms
82,548 KB
testcase_27 AC 76 ms
79,088 KB
testcase_28 AC 283 ms
103,276 KB
testcase_29 AC 520 ms
156,472 KB
testcase_30 AC 278 ms
103,020 KB
testcase_31 AC 173 ms
88,524 KB
testcase_32 AC 291 ms
106,644 KB
testcase_33 AC 39 ms
55,564 KB
testcase_34 AC 41 ms
55,528 KB
testcase_35 AC 39 ms
54,432 KB
権限があれば一括ダウンロードができます

ソースコード

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