結果

問題 No.2821 A[i] ← 2A[j] - A[i]
ユーザー detteiuudetteiuu
提出日時 2024-07-27 17:02:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 1,500 ms
コード長 289 bytes
コンパイル時間 629 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 162,388 KB
最終ジャッジ日時 2024-07-27 17:02:48
合計ジャッジ時間 5,542 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,540 KB
testcase_01 AC 175 ms
138,080 KB
testcase_02 AC 200 ms
162,388 KB
testcase_03 AC 197 ms
160,188 KB
testcase_04 AC 141 ms
112,952 KB
testcase_05 AC 150 ms
117,472 KB
testcase_06 AC 105 ms
103,720 KB
testcase_07 AC 104 ms
101,620 KB
testcase_08 AC 133 ms
109,328 KB
testcase_09 AC 74 ms
86,508 KB
testcase_10 AC 87 ms
86,972 KB
testcase_11 AC 78 ms
86,848 KB
testcase_12 AC 78 ms
86,976 KB
testcase_13 AC 80 ms
87,224 KB
testcase_14 AC 86 ms
93,484 KB
testcase_15 AC 91 ms
94,760 KB
testcase_16 AC 74 ms
84,656 KB
testcase_17 AC 85 ms
91,744 KB
testcase_18 AC 90 ms
93,000 KB
testcase_19 AC 55 ms
70,080 KB
testcase_20 AC 58 ms
69,396 KB
testcase_21 AC 51 ms
64,572 KB
testcase_22 AC 53 ms
66,844 KB
testcase_23 AC 53 ms
66,224 KB
testcase_24 AC 39 ms
53,180 KB
testcase_25 AC 39 ms
53,664 KB
testcase_26 AC 44 ms
60,272 KB
testcase_27 AC 44 ms
59,488 KB
testcase_28 AC 42 ms
60,312 KB
testcase_29 AC 44 ms
60,252 KB
testcase_30 AC 37 ms
53,008 KB
testcase_31 AC 38 ms
52,396 KB
testcase_32 AC 40 ms
55,128 KB
testcase_33 AC 43 ms
60,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

N = int(input())
A = list(map(int, input().split()))

GCD = 0
ans = [0]
for i in range(1, N):
    if [0] != A[i]:
        if GCD == 0:
            GCD = abs(A[0]-A[i])
        else:
            GCD = gcd(GCD, abs(A[0]-A[i]))
    ans.append(GCD)

print(*ans, sep="\n")
0