結果

問題 No.983 Convolution
ユーザー titiatitia
提出日時 2020-02-11 14:54:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 463 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,652 KB
最終ジャッジ日時 2024-10-01 07:47:20
合計ジャッジ時間 18,074 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 696 ms
22,476 KB
testcase_04 AC 574 ms
21,056 KB
testcase_05 AC 493 ms
18,676 KB
testcase_06 AC 768 ms
23,536 KB
testcase_07 AC 759 ms
23,580 KB
testcase_08 AC 165 ms
12,928 KB
testcase_09 WA -
testcase_10 AC 112 ms
12,416 KB
testcase_11 AC 190 ms
13,612 KB
testcase_12 AC 1,005 ms
23,956 KB
testcase_13 AC 259 ms
15,304 KB
testcase_14 AC 340 ms
15,900 KB
testcase_15 WA -
testcase_16 AC 497 ms
18,480 KB
testcase_17 WA -
testcase_18 AC 140 ms
13,056 KB
testcase_19 AC 484 ms
18,856 KB
testcase_20 AC 976 ms
24,560 KB
testcase_21 AC 672 ms
23,632 KB
testcase_22 AC 175 ms
13,440 KB
testcase_23 AC 673 ms
18,596 KB
testcase_24 AC 167 ms
12,544 KB
testcase_25 AC 144 ms
12,160 KB
testcase_26 AC 450 ms
15,848 KB
testcase_27 AC 341 ms
14,840 KB
testcase_28 AC 836 ms
20,000 KB
testcase_29 AC 1,640 ms
29,652 KB
testcase_30 AC 848 ms
20,120 KB
testcase_31 AC 466 ms
15,848 KB
testcase_32 AC 882 ms
21,156 KB
testcase_33 AC 29 ms
10,752 KB
testcase_34 AC 29 ms
11,008 KB
testcase_35 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))

import copy
S=copy.deepcopy(A)

for i in range(N-1,-1,-1):
    for j in range(19):
        if i & (1<<j)!=0:
            if S[i]==-1:
                S[i^(1<<j)]=-1
            elif S[i]!=-1 and S[i^(1<<j)]!=-1:
                S[i^(1<<j)]+=S[i]

if max(S)==-1:
    print(-1)
else:    
    import math
    ANS=0
    for s in S:
        if s==-1:
            continue
        ANS=math.gcd(s**2,ANS)

    print(ANS)
0