結果

問題 No.983 Convolution
ユーザー convexineqconvexineq
提出日時 2021-05-06 09:41:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 152 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 105,196 KB
最終ジャッジ日時 2024-09-14 02:41:50
合計ジャッジ時間 5,318 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 64 ms
71,808 KB
testcase_14 AC 67 ms
75,520 KB
testcase_15 AC 84 ms
89,856 KB
testcase_16 AC 75 ms
80,512 KB
testcase_17 AC 94 ms
96,640 KB
testcase_18 AC 53 ms
65,920 KB
testcase_19 AC 81 ms
82,816 KB
testcase_20 AC 104 ms
102,400 KB
testcase_21 AC 97 ms
93,568 KB
testcase_22 AC 57 ms
67,200 KB
testcase_23 AC 70 ms
85,632 KB
testcase_24 AC 53 ms
64,384 KB
testcase_25 AC 49 ms
63,104 KB
testcase_26 AC 61 ms
75,520 KB
testcase_27 AC 57 ms
71,296 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 40 ms
51,456 KB
testcase_34 AC 41 ms
52,096 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
n = int(input())
*a, = map(lambda x:0 if x=="-1" else int(x),input().split())
g = 0
for i in a: g = gcd(g,i)
print(g if g else -1)
0