結果

問題 No.2821 A[i] ← 2A[j] - A[i]
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-12-14 20:16:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 1,500 ms
コード長 834 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 154,844 KB
最終ジャッジ日時 2024-12-14 20:16:41
合計ジャッジ時間 7,820 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,644 KB
testcase_01 AC 176 ms
130,812 KB
testcase_02 AC 207 ms
154,844 KB
testcase_03 AC 197 ms
153,960 KB
testcase_04 AC 149 ms
108,568 KB
testcase_05 AC 152 ms
112,844 KB
testcase_06 AC 114 ms
94,784 KB
testcase_07 AC 110 ms
92,624 KB
testcase_08 AC 141 ms
105,036 KB
testcase_09 AC 87 ms
84,516 KB
testcase_10 AC 95 ms
83,568 KB
testcase_11 AC 120 ms
84,024 KB
testcase_12 AC 90 ms
85,232 KB
testcase_13 AC 87 ms
85,492 KB
testcase_14 AC 96 ms
88,608 KB
testcase_15 AC 98 ms
88,772 KB
testcase_16 AC 83 ms
82,956 KB
testcase_17 AC 94 ms
89,452 KB
testcase_18 AC 96 ms
86,884 KB
testcase_19 AC 66 ms
72,028 KB
testcase_20 AC 62 ms
72,116 KB
testcase_21 AC 58 ms
67,208 KB
testcase_22 AC 62 ms
69,088 KB
testcase_23 AC 59 ms
68,996 KB
testcase_24 AC 39 ms
52,700 KB
testcase_25 AC 41 ms
53,620 KB
testcase_26 AC 46 ms
60,140 KB
testcase_27 AC 45 ms
60,800 KB
testcase_28 AC 45 ms
60,596 KB
testcase_29 AC 45 ms
59,332 KB
testcase_30 AC 39 ms
52,332 KB
testcase_31 AC 39 ms
52,824 KB
testcase_32 AC 43 ms
53,792 KB
testcase_33 AC 45 ms
59,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://yukicoder.me/problems/no/2821


def calc_gcd(A, B):
    """
    正の整数A, Bの最大公約数を計算する
    """
    a = max(A, B)
    b = min(A, B)
    while a % b > 0:
        c = a % b
        a = b
        b = c
    return b

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

    answer = [0]
    ans = 0
    prev = A[0]
    for i in range(1, N):
        a = A[i]

        if prev == a:
            answer.append(ans)
        else:
            if ans == 0:
                ans = abs(a - prev)
                answer.append(ans)
            else:
                x = abs(a - prev)
                gcd = calc_gcd(x, ans)
                ans = gcd
                answer.append(ans)
        prev = a
    for i in range(N):
        print(answer[i])





if __name__ == "__main__":
    main()
0