結果

問題 No.970 数列変換マシン
ユーザー c-yan
提出日時 2020-03-22 01:05:24
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 106 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,828 KB
最終ジャッジ日時 2024-12-24 04:46:48
合計ジャッジ時間 3,397 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

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

sy = sum(y)
print(*[sy - yi * (N - 1) for yi in y])
0