結果

問題 No.2821 A[i] ← 2A[j] - A[i]
ユーザー miya145592miya145592
提出日時 2024-07-27 01:38:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 1,500 ms
コード長 209 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 155,152 KB
最終ジャッジ日時 2024-07-27 01:38:12
合計ジャッジ時間 6,086 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,876 KB
testcase_01 AC 197 ms
130,964 KB
testcase_02 AC 190 ms
155,152 KB
testcase_03 AC 196 ms
153,100 KB
testcase_04 AC 139 ms
109,260 KB
testcase_05 AC 145 ms
112,920 KB
testcase_06 AC 103 ms
93,296 KB
testcase_07 AC 101 ms
97,700 KB
testcase_08 AC 127 ms
105,252 KB
testcase_09 AC 75 ms
84,392 KB
testcase_10 AC 86 ms
84,972 KB
testcase_11 AC 78 ms
85,052 KB
testcase_12 AC 79 ms
84,976 KB
testcase_13 AC 79 ms
85,060 KB
testcase_14 AC 84 ms
91,024 KB
testcase_15 AC 89 ms
91,992 KB
testcase_16 AC 73 ms
82,904 KB
testcase_17 AC 86 ms
89,516 KB
testcase_18 AC 87 ms
90,200 KB
testcase_19 AC 57 ms
69,484 KB
testcase_20 AC 55 ms
68,408 KB
testcase_21 AC 54 ms
65,948 KB
testcase_22 AC 55 ms
65,932 KB
testcase_23 AC 56 ms
66,968 KB
testcase_24 AC 39 ms
53,456 KB
testcase_25 AC 39 ms
53,884 KB
testcase_26 AC 45 ms
59,788 KB
testcase_27 AC 46 ms
59,956 KB
testcase_28 AC 44 ms
59,104 KB
testcase_29 AC 43 ms
60,024 KB
testcase_30 AC 39 ms
52,640 KB
testcase_31 AC 38 ms
53,404 KB
testcase_32 AC 42 ms
53,740 KB
testcase_33 AC 45 ms
59,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import sys
input = sys.stdin.readline
N = int(input())
A = list(map(int, input().split()))
ans = [0]
for i in range(1, N):
    ans.append(math.gcd(ans[-1], A[i]-A[i-1]))
for a in ans:
    print(a)
0