結果

問題 No.983 Convolution
ユーザー convexineqconvexineq
提出日時 2020-02-11 14:05:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,264 KB
最終ジャッジ日時 2024-10-01 07:30:15
合計ジャッジ時間 3,016 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 25 ms
10,880 KB
testcase_03 AC 73 ms
21,664 KB
testcase_04 AC 71 ms
21,116 KB
testcase_05 AC 60 ms
18,640 KB
testcase_06 AC 82 ms
23,496 KB
testcase_07 AC 72 ms
22,044 KB
testcase_08 AC 35 ms
12,800 KB
testcase_09 AC 37 ms
14,412 KB
testcase_10 AC 31 ms
12,288 KB
testcase_11 AC 38 ms
13,796 KB
testcase_12 AC 76 ms
24,024 KB
testcase_13 AC 45 ms
15,356 KB
testcase_14 AC 48 ms
15,864 KB
testcase_15 AC 61 ms
21,048 KB
testcase_16 AC 50 ms
18,244 KB
testcase_17 AC 65 ms
22,544 KB
testcase_18 AC 34 ms
12,800 KB
testcase_19 AC 55 ms
18,104 KB
testcase_20 AC 74 ms
25,556 KB
testcase_21 AC 73 ms
23,332 KB
testcase_22 AC 37 ms
13,296 KB
testcase_23 AC 49 ms
18,900 KB
testcase_24 AC 32 ms
12,416 KB
testcase_25 AC 30 ms
12,032 KB
testcase_26 AC 40 ms
15,688 KB
testcase_27 AC 36 ms
14,592 KB
testcase_28 AC 69 ms
20,092 KB
testcase_29 AC 108 ms
29,264 KB
testcase_30 AC 67 ms
19,956 KB
testcase_31 AC 46 ms
15,892 KB
testcase_32 AC 69 ms
21,080 KB
testcase_33 AC 27 ms
10,880 KB
testcase_34 AC 27 ms
10,752 KB
testcase_35 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

import sys
readline = sys.stdin.readline
read = sys.stdin.read

n,*a = [int(i) if i != "-1" else 0 for i in read().split()]

from math import gcd
from functools import reduce 

g = reduce(gcd,a)

if g: print(g*g)
else: print(-1)
0