結果

問題 No.2821 A[i] ← 2A[j] - A[i]
ユーザー ねしんねしん
提出日時 2024-07-27 00:05:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 1,500 ms
コード長 262 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 134,624 KB
最終ジャッジ日時 2024-07-27 00:05:56
合計ジャッジ時間 5,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 162 ms
110,544 KB
testcase_02 AC 183 ms
134,624 KB
testcase_03 AC 182 ms
132,916 KB
testcase_04 AC 141 ms
99,328 KB
testcase_05 AC 141 ms
100,736 KB
testcase_06 AC 99 ms
94,336 KB
testcase_07 AC 112 ms
93,040 KB
testcase_08 AC 131 ms
98,664 KB
testcase_09 AC 76 ms
82,376 KB
testcase_10 AC 99 ms
83,700 KB
testcase_11 AC 86 ms
83,456 KB
testcase_12 AC 87 ms
83,328 KB
testcase_13 AC 85 ms
83,712 KB
testcase_14 AC 88 ms
87,140 KB
testcase_15 AC 93 ms
87,772 KB
testcase_16 AC 80 ms
81,408 KB
testcase_17 AC 88 ms
86,280 KB
testcase_18 AC 99 ms
87,352 KB
testcase_19 AC 64 ms
71,296 KB
testcase_20 AC 75 ms
71,296 KB
testcase_21 AC 54 ms
64,768 KB
testcase_22 AC 56 ms
65,920 KB
testcase_23 AC 56 ms
66,688 KB
testcase_24 AC 40 ms
52,736 KB
testcase_25 AC 40 ms
52,864 KB
testcase_26 AC 46 ms
60,032 KB
testcase_27 AC 47 ms
60,416 KB
testcase_28 AC 45 ms
59,268 KB
testcase_29 AC 45 ms
59,012 KB
testcase_30 AC 39 ms
52,864 KB
testcase_31 AC 39 ms
51,840 KB
testcase_32 AC 43 ms
54,144 KB
testcase_33 AC 47 ms
59,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a,b):
  if b<=0:
    return a
  else:
    return gcd(b,a%b)
N=int(input())
A=list(map(int,input().split()))
print(0)
if N==1:
	exit()
ans=abs(A[0]-A[1])
print(ans)
for i in range(2,N):
	ans=gcd(max(ans,abs(A[0]-A[i])),min(abs(A[0]-A[i]),ans))
	print(ans)
0