結果

問題 No.983 Convolution
ユーザー titiatitia
提出日時 2020-03-12 17:38:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,736 KB
最終ジャッジ日時 2024-11-18 21:35:43
合計ジャッジ時間 4,984 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 94 ms
22,308 KB
testcase_04 AC 87 ms
21,140 KB
testcase_05 AC 76 ms
18,764 KB
testcase_06 AC 105 ms
23,620 KB
testcase_07 AC 96 ms
22,700 KB
testcase_08 AC 43 ms
13,056 KB
testcase_09 AC 51 ms
14,524 KB
testcase_10 AC 40 ms
12,544 KB
testcase_11 AC 47 ms
13,700 KB
testcase_12 AC 101 ms
24,172 KB
testcase_13 AC 55 ms
15,388 KB
testcase_14 AC 59 ms
15,864 KB
testcase_15 AC 85 ms
20,976 KB
testcase_16 AC 70 ms
18,312 KB
testcase_17 AC 94 ms
22,708 KB
testcase_18 AC 43 ms
12,672 KB
testcase_19 AC 73 ms
18,940 KB
testcase_20 AC 107 ms
24,652 KB
testcase_21 AC 97 ms
23,592 KB
testcase_22 AC 44 ms
13,036 KB
testcase_23 AC 72 ms
18,796 KB
testcase_24 AC 40 ms
12,544 KB
testcase_25 AC 38 ms
12,288 KB
testcase_26 AC 58 ms
15,880 KB
testcase_27 AC 50 ms
14,464 KB
testcase_28 AC 80 ms
20,096 KB
testcase_29 AC 126 ms
29,736 KB
testcase_30 AC 82 ms
20,208 KB
testcase_31 AC 59 ms
15,892 KB
testcase_32 AC 86 ms
21,244 KB
testcase_33 AC 30 ms
10,752 KB
testcase_34 AC 30 ms
10,752 KB
testcase_35 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
from math import gcd
ANS=0
for a in A:
    if a!=-1:
        ANS=gcd(a,ANS)
if ANS==0:
    print(-1)
else:
    print(ANS**2)
0