結果

問題 No.970 数列変換マシン
ユーザー もりをもりを
提出日時 2020-01-17 21:33:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 112,756 KB
最終ジャッジ日時 2024-06-25 18:51:10
合計ジャッジ時間 3,145 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
112,580 KB
testcase_01 AC 107 ms
112,092 KB
testcase_02 AC 110 ms
112,532 KB
testcase_03 AC 103 ms
112,312 KB
testcase_04 AC 103 ms
112,236 KB
testcase_05 AC 103 ms
112,756 KB
testcase_06 AC 102 ms
111,684 KB
testcase_07 AC 101 ms
109,892 KB
testcase_08 AC 103 ms
110,400 KB
testcase_09 AC 43 ms
60,528 KB
testcase_10 AC 41 ms
59,016 KB
testcase_11 AC 52 ms
66,180 KB
testcase_12 AC 51 ms
65,556 KB
testcase_13 AC 43 ms
59,268 KB
testcase_14 AC 53 ms
65,520 KB
testcase_15 AC 37 ms
53,052 KB
testcase_16 AC 37 ms
53,472 KB
testcase_17 AC 37 ms
52,352 KB
testcase_18 AC 36 ms
52,676 KB
testcase_19 AC 36 ms
52,356 KB
testcase_20 AC 36 ms
52,800 KB
testcase_21 AC 37 ms
52,492 KB
testcase_22 AC 36 ms
53,360 KB
testcase_23 AC 37 ms
52,112 KB
testcase_24 AC 37 ms
52,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))

l = []
for i, j in zip(a, a[1:]):
    l.append((i - j) * (n - 1))

b = [0]
for i in l:
    b.append(b[-1] + i)
sm = sum(b)
offset = (a[0] * (n - 1) - (sm - b[0])) // (n - 1)
print(*(i + offset for i in b))
0