結果
問題 | No.983 Convolution |
ユーザー | vwxyz |
提出日時 | 2021-09-15 13:42:18 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 162 ms / 2,000 ms |
コード長 | 849 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 30,696 KB |
最終ジャッジ日時 | 2024-06-28 13:57:47 |
合計ジャッジ時間 | 4,539 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
11,904 KB |
testcase_01 | AC | 40 ms
11,904 KB |
testcase_02 | AC | 39 ms
11,776 KB |
testcase_03 | AC | 138 ms
23,592 KB |
testcase_04 | AC | 109 ms
22,088 KB |
testcase_05 | AC | 102 ms
19,696 KB |
testcase_06 | AC | 140 ms
24,684 KB |
testcase_07 | AC | 137 ms
23,776 KB |
testcase_08 | AC | 59 ms
13,928 KB |
testcase_09 | AC | 74 ms
15,360 KB |
testcase_10 | AC | 51 ms
13,312 KB |
testcase_11 | AC | 61 ms
14,912 KB |
testcase_12 | AC | 162 ms
25,256 KB |
testcase_13 | AC | 70 ms
16,356 KB |
testcase_14 | AC | 79 ms
16,916 KB |
testcase_15 | AC | 118 ms
22,200 KB |
testcase_16 | AC | 96 ms
18,732 KB |
testcase_17 | AC | 134 ms
23,920 KB |
testcase_18 | AC | 55 ms
13,568 KB |
testcase_19 | AC | 97 ms
19,904 KB |
testcase_20 | AC | 156 ms
25,600 KB |
testcase_21 | AC | 116 ms
24,680 KB |
testcase_22 | AC | 59 ms
14,336 KB |
testcase_23 | AC | 113 ms
19,764 KB |
testcase_24 | AC | 57 ms
13,312 KB |
testcase_25 | AC | 54 ms
13,184 KB |
testcase_26 | AC | 87 ms
16,724 KB |
testcase_27 | AC | 75 ms
15,616 KB |
testcase_28 | AC | 101 ms
21,280 KB |
testcase_29 | AC | 155 ms
30,696 KB |
testcase_30 | AC | 100 ms
21,264 KB |
testcase_31 | AC | 72 ms
16,928 KB |
testcase_32 | AC | 104 ms
22,456 KB |
testcase_33 | AC | 39 ms
11,904 KB |
testcase_34 | AC | 38 ms
11,904 KB |
testcase_35 | AC | 38 ms
11,904 KB |
ソースコード
import bisect import copy import decimal import fractions import functools import heapq import itertools import math import random import sys from collections import Counter,deque,defaultdict from functools import lru_cache,reduce from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max def _heappush_max(heap,item): heap.append(item) heapq._siftdown_max(heap, 0, len(heap)-1) def _heappushpop_max(heap, item): if heap and item < heap[0]: item, heap[0] = heap[0], item heapq._siftup_max(heap, 0) return item from math import degrees, gcd as GCD read=sys.stdin.read readline=sys.stdin.readline readlines=sys.stdin.readlines N=int(readline()) A=list(map(int,readline().split())) for i in range(N): if A[i]==-1: A[i]=0 g=0 for a in A: g=GCD(g,a) g**=2 if g==0: g=-1 print(g)