結果

問題 No.983 Convolution
ユーザー vwxyzvwxyz
提出日時 2021-09-15 13:31:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,075 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,728 KB
最終ジャッジ日時 2024-06-28 13:49:02
合計ジャッジ時間 43,141 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
11,904 KB
testcase_01 AC 42 ms
11,776 KB
testcase_02 AC 41 ms
11,648 KB
testcase_03 AC 1,907 ms
23,536 KB
testcase_04 AC 1,533 ms
22,120 KB
testcase_05 AC 1,333 ms
19,856 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 399 ms
13,928 KB
testcase_09 AC 839 ms
15,232 KB
testcase_10 AC 273 ms
14,208 KB
testcase_11 AC 440 ms
15,072 KB
testcase_12 TLE -
testcase_13 AC 667 ms
16,892 KB
testcase_14 AC 922 ms
17,076 KB
testcase_15 AC 1,954 ms
22,100 KB
testcase_16 AC 1,420 ms
18,756 KB
testcase_17 TLE -
testcase_18 AC 360 ms
13,936 KB
testcase_19 AC 1,294 ms
19,880 KB
testcase_20 TLE -
testcase_21 AC 1,912 ms
24,460 KB
testcase_22 AC 447 ms
14,172 KB
testcase_23 AC 1,760 ms
19,796 KB
testcase_24 AC 389 ms
13,696 KB
testcase_25 AC 340 ms
13,312 KB
testcase_26 AC 1,094 ms
16,748 KB
testcase_27 AC 876 ms
15,360 KB
testcase_28 AC 1,396 ms
21,192 KB
testcase_29 TLE -
testcase_30 AC 1,310 ms
21,296 KB
testcase_31 AC 720 ms
16,956 KB
testcase_32 AC 1,458 ms
22,484 KB
testcase_33 AC 41 ms
11,648 KB
testcase_34 AC 41 ms
11,648 KB
testcase_35 AC 40 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import functools
import heapq
import itertools
import math
import random
import sys
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import degrees, gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines

N=int(readline())
A=list(map(int,readline().split()))
for i in range(N):
    if A[i]==-1:
        A[i]=0
for bit in range(30):
    for i in range(N-1,-1,-1):
        if i>>bit&1:
            A[i^1<<bit]+=A[i]
for i in range(N):
    A[i]**=2
for bit in range(30):
    for i in range(N):
        if i>>bit&1:
            A[i^1<<bit]-=A[i]
g=0
for a in A:
    g=GCD(g,a)
if g==0:
    g=-1
print(g)
0