結果

問題 No.2821 A[i] ← 2A[j] - A[i]
ユーザー hiro1729hiro1729
提出日時 2024-07-27 06:59:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 198 ms / 1,500 ms
コード長 150 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 134,488 KB
最終ジャッジ日時 2024-07-27 06:59:39
合計ジャッジ時間 5,691 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,132 KB
testcase_01 AC 154 ms
110,996 KB
testcase_02 AC 198 ms
134,488 KB
testcase_03 AC 169 ms
132,932 KB
testcase_04 AC 124 ms
99,296 KB
testcase_05 AC 128 ms
100,912 KB
testcase_06 AC 102 ms
95,036 KB
testcase_07 AC 96 ms
93,028 KB
testcase_08 AC 119 ms
98,472 KB
testcase_09 AC 99 ms
82,636 KB
testcase_10 AC 84 ms
83,732 KB
testcase_11 AC 80 ms
83,376 KB
testcase_12 AC 76 ms
83,464 KB
testcase_13 AC 77 ms
83,348 KB
testcase_14 AC 81 ms
87,108 KB
testcase_15 AC 83 ms
88,376 KB
testcase_16 AC 71 ms
81,280 KB
testcase_17 AC 77 ms
86,152 KB
testcase_18 AC 86 ms
87,564 KB
testcase_19 AC 57 ms
70,384 KB
testcase_20 AC 55 ms
69,612 KB
testcase_21 AC 59 ms
68,660 KB
testcase_22 AC 54 ms
67,984 KB
testcase_23 AC 58 ms
69,556 KB
testcase_24 AC 37 ms
53,884 KB
testcase_25 AC 40 ms
54,240 KB
testcase_26 AC 43 ms
59,764 KB
testcase_27 AC 43 ms
60,000 KB
testcase_28 AC 42 ms
59,420 KB
testcase_29 AC 42 ms
60,336 KB
testcase_30 AC 36 ms
53,008 KB
testcase_31 AC 36 ms
52,740 KB
testcase_32 AC 39 ms
54,764 KB
testcase_33 AC 42 ms
59,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
N = int(input())
A = list(map(int, input().split()))
g = 0
print(g)
for i in range(N - 1):
	g = gcd(g, A[i + 1] - A[i])
	print(g)
0