結果

問題 No.983 Convolution
ユーザー chinchillachinchilla
提出日時 2020-02-16 15:00:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 142 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,744 KB
最終ジャッジ日時 2024-10-06 14:30:39
合計ジャッジ時間 5,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 111 ms
21,556 KB
testcase_04 AC 108 ms
20,900 KB
testcase_05 AC 88 ms
18,272 KB
testcase_06 AC 121 ms
23,120 KB
testcase_07 AC 105 ms
22,440 KB
testcase_08 AC 45 ms
12,544 KB
testcase_09 AC 50 ms
14,048 KB
testcase_10 AC 42 ms
12,288 KB
testcase_11 AC 53 ms
13,584 KB
testcase_12 AC 105 ms
22,520 KB
testcase_13 AC 62 ms
15,152 KB
testcase_14 AC 64 ms
15,748 KB
testcase_15 AC 91 ms
19,840 KB
testcase_16 AC 74 ms
17,172 KB
testcase_17 AC 99 ms
21,568 KB
testcase_18 AC 44 ms
12,672 KB
testcase_19 AC 80 ms
18,188 KB
testcase_20 AC 115 ms
23,648 KB
testcase_21 AC 116 ms
23,352 KB
testcase_22 AC 45 ms
12,800 KB
testcase_23 AC 70 ms
18,112 KB
testcase_24 AC 39 ms
12,416 KB
testcase_25 AC 37 ms
12,032 KB
testcase_26 AC 56 ms
15,428 KB
testcase_27 AC 50 ms
14,592 KB
testcase_28 AC 102 ms
20,228 KB
testcase_29 AC 170 ms
29,744 KB
testcase_30 AC 101 ms
19,968 KB
testcase_31 AC 69 ms
15,860 KB
testcase_32 AC 108 ms
21,256 KB
testcase_33 AC 29 ms
10,752 KB
testcase_34 AC 30 ms
10,752 KB
testcase_35 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math, functools
n = int(input())
a = [int(w) for w in input().split() if int(w)>0]
print(functools.reduce(math.gcd, a)**2 if a else -1)
0