結果

問題 No.983 Convolution
ユーザー vwxyzvwxyz
提出日時 2021-09-15 13:32:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 679 ms / 2,000 ms
コード長 1,075 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 163,612 KB
最終ジャッジ日時 2024-06-28 13:49:49
合計ジャッジ時間 13,805 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
89,532 KB
testcase_01 AC 157 ms
89,344 KB
testcase_02 AC 146 ms
89,600 KB
testcase_03 AC 510 ms
132,424 KB
testcase_04 AC 425 ms
122,016 KB
testcase_05 AC 386 ms
113,424 KB
testcase_06 AC 556 ms
141,220 KB
testcase_07 AC 558 ms
141,380 KB
testcase_08 AC 231 ms
94,336 KB
testcase_09 AC 263 ms
97,664 KB
testcase_10 AC 207 ms
93,056 KB
testcase_11 AC 231 ms
95,488 KB
testcase_12 AC 679 ms
161,284 KB
testcase_13 AC 275 ms
101,648 KB
testcase_14 AC 304 ms
104,228 KB
testcase_15 AC 502 ms
132,932 KB
testcase_16 AC 383 ms
115,424 KB
testcase_17 AC 572 ms
144,332 KB
testcase_18 AC 223 ms
94,336 KB
testcase_19 AC 388 ms
112,292 KB
testcase_20 AC 673 ms
163,392 KB
testcase_21 AC 498 ms
130,480 KB
testcase_22 AC 231 ms
95,488 KB
testcase_23 AC 220 ms
106,240 KB
testcase_24 AC 164 ms
91,264 KB
testcase_25 AC 169 ms
90,624 KB
testcase_26 AC 191 ms
99,456 KB
testcase_27 AC 179 ms
96,768 KB
testcase_28 AC 390 ms
116,516 KB
testcase_29 AC 679 ms
163,612 KB
testcase_30 AC 395 ms
116,776 KB
testcase_31 AC 273 ms
100,404 KB
testcase_32 AC 411 ms
119,160 KB
testcase_33 AC 144 ms
89,856 KB
testcase_34 AC 145 ms
89,600 KB
testcase_35 AC 145 ms
89,472 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