結果

問題 No.970 数列変換マシン
ユーザー trineutron
提出日時 2020-01-18 03:37:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 100 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,712 KB
最終ジャッジ日時 2024-06-26 07:41:34
合計ジャッジ時間 2,559 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
y = list(map(int, input().split()))
s = sum(y)
x = [2 * s - a for a in y]
print(x)
0