結果

問題 No.2821 A[i] ← 2A[j] - A[i]
ユーザー ああいいああいい
提出日時 2024-08-28 10:57:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 211 ms / 1,500 ms
コード長 312 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 134,616 KB
最終ジャッジ日時 2024-08-28 10:57:57
合計ジャッジ時間 7,883 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,280 KB
testcase_01 AC 183 ms
110,500 KB
testcase_02 AC 211 ms
134,616 KB
testcase_03 AC 203 ms
133,132 KB
testcase_04 AC 166 ms
99,032 KB
testcase_05 AC 157 ms
100,744 KB
testcase_06 AC 119 ms
94,900 KB
testcase_07 AC 115 ms
92,760 KB
testcase_08 AC 145 ms
98,444 KB
testcase_09 AC 91 ms
82,688 KB
testcase_10 AC 96 ms
83,884 KB
testcase_11 AC 92 ms
83,404 KB
testcase_12 AC 92 ms
83,464 KB
testcase_13 AC 92 ms
83,216 KB
testcase_14 AC 98 ms
87,320 KB
testcase_15 AC 103 ms
88,664 KB
testcase_16 AC 89 ms
81,620 KB
testcase_17 AC 95 ms
86,540 KB
testcase_18 AC 103 ms
87,384 KB
testcase_19 AC 73 ms
76,644 KB
testcase_20 AC 73 ms
76,744 KB
testcase_21 AC 61 ms
71,208 KB
testcase_22 AC 65 ms
73,956 KB
testcase_23 AC 59 ms
72,660 KB
testcase_24 AC 37 ms
52,488 KB
testcase_25 AC 43 ms
53,160 KB
testcase_26 AC 46 ms
62,528 KB
testcase_27 AC 46 ms
61,348 KB
testcase_28 AC 46 ms
60,592 KB
testcase_29 AC 43 ms
60,528 KB
testcase_30 AC 38 ms
52,820 KB
testcase_31 AC 37 ms
52,740 KB
testcase_32 AC 44 ms
60,268 KB
testcase_33 AC 44 ms
60,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def gcd(a,b):
    while b:
        r = a % b
        a = b
        b = r
    return a

import sys

print(0)
if N == 1:
    exit()
print(abs(A[0] - A[1]))
g = abs(A[0] - A[1])

for i in range(2,N):
    u = abs(A[i] - A[i-1])
    g = gcd(g,u)
    print(g)
    
0