結果

問題 No.983 Convolution
ユーザー ganmodokixganmodokix
提出日時 2020-02-11 16:52:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 713 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 30,404 KB
最終ジャッジ日時 2024-10-01 08:05:03
合計ジャッジ時間 28,021 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
11,136 KB
testcase_01 AC 26 ms
11,264 KB
testcase_02 AC 26 ms
11,264 KB
testcase_03 AC 1,202 ms
22,748 KB
testcase_04 AC 964 ms
21,580 KB
testcase_05 AC 844 ms
19,076 KB
testcase_06 AC 1,425 ms
24,056 KB
testcase_07 AC 1,393 ms
24,108 KB
testcase_08 AC 247 ms
14,080 KB
testcase_09 AC 512 ms
14,820 KB
testcase_10 AC 165 ms
12,928 KB
testcase_11 AC 269 ms
14,708 KB
testcase_12 TLE -
testcase_13 AC 437 ms
16,152 KB
testcase_14 AC 536 ms
16,428 KB
testcase_15 AC 1,284 ms
22,220 KB
testcase_16 AC 1,036 ms
18,880 KB
testcase_17 AC 1,634 ms
24,148 KB
testcase_18 AC 247 ms
13,696 KB
testcase_19 AC 990 ms
20,096 KB
testcase_20 AC 1,915 ms
24,964 KB
testcase_21 AC 1,150 ms
23,976 KB
testcase_22 AC 266 ms
13,696 KB
testcase_23 AC 1,053 ms
19,236 KB
testcase_24 AC 226 ms
13,056 KB
testcase_25 AC 188 ms
12,544 KB
testcase_26 AC 684 ms
16,448 KB
testcase_27 AC 497 ms
15,048 KB
testcase_28 AC 890 ms
20,656 KB
testcase_29 AC 1,743 ms
30,404 KB
testcase_30 AC 854 ms
20,528 KB
testcase_31 AC 449 ms
16,372 KB
testcase_32 AC 923 ms
21,776 KB
testcase_33 AC 28 ms
11,264 KB
testcase_34 AC 28 ms
11,136 KB
testcase_35 AC 27 ms
11,264 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