結果

問題 No.2821 A[i] ← 2A[j] - A[i]
ユーザー nikoro256nikoro256
提出日時 2024-07-26 22:40:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 1,500 ms
コード長 239 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 134,680 KB
最終ジャッジ日時 2024-07-26 22:40:28
合計ジャッジ時間 5,540 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 162 ms
111,084 KB
testcase_02 AC 192 ms
134,680 KB
testcase_03 AC 183 ms
132,976 KB
testcase_04 AC 135 ms
99,200 KB
testcase_05 AC 142 ms
100,736 KB
testcase_06 AC 108 ms
95,224 KB
testcase_07 AC 103 ms
93,084 KB
testcase_08 AC 128 ms
98,432 KB
testcase_09 AC 80 ms
82,688 KB
testcase_10 AC 92 ms
83,712 KB
testcase_11 AC 83 ms
83,072 KB
testcase_12 AC 84 ms
83,328 KB
testcase_13 AC 84 ms
83,156 KB
testcase_14 AC 87 ms
86,884 KB
testcase_15 AC 92 ms
87,960 KB
testcase_16 AC 79 ms
81,408 KB
testcase_17 AC 83 ms
86,012 KB
testcase_18 AC 91 ms
87,680 KB
testcase_19 AC 62 ms
69,376 KB
testcase_20 AC 59 ms
69,120 KB
testcase_21 AC 62 ms
67,072 KB
testcase_22 AC 58 ms
66,688 KB
testcase_23 AC 62 ms
68,736 KB
testcase_24 AC 44 ms
52,352 KB
testcase_25 AC 42 ms
53,376 KB
testcase_26 AC 46 ms
59,392 KB
testcase_27 AC 46 ms
59,008 KB
testcase_28 AC 46 ms
58,880 KB
testcase_29 AC 45 ms
59,136 KB
testcase_30 AC 39 ms
52,608 KB
testcase_31 AC 40 ms
51,968 KB
testcase_32 AC 43 ms
53,632 KB
testcase_33 AC 45 ms
58,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N = int(input())
A = list(map(int, input().split()))
"""
(2*B_j - B_i,B_j)
abs(B_j - B_i)

差のgcdじゃだめかな?
"""
gcd = 0
print(0)
for i in range(1, N):
    gcd = math.gcd(abs(A[i] - A[i - 1]), gcd)
    print(gcd)
0