結果

問題 No.970 数列変換マシン
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-10 03:10:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 130 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 94,216 KB
最終ジャッジ日時 2024-11-15 23:02:01
合計ジャッジ時間 2,911 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
93,956 KB
testcase_01 AC 89 ms
94,216 KB
testcase_02 AC 87 ms
93,836 KB
testcase_03 AC 85 ms
92,800 KB
testcase_04 AC 83 ms
92,276 KB
testcase_05 AC 85 ms
93,056 KB
testcase_06 AC 83 ms
91,904 KB
testcase_07 AC 84 ms
92,432 KB
testcase_08 AC 83 ms
92,408 KB
testcase_09 AC 45 ms
59,384 KB
testcase_10 AC 44 ms
59,240 KB
testcase_11 AC 52 ms
63,476 KB
testcase_12 AC 51 ms
62,780 KB
testcase_13 AC 44 ms
59,052 KB
testcase_14 AC 51 ms
63,828 KB
testcase_15 AC 39 ms
53,368 KB
testcase_16 AC 39 ms
51,820 KB
testcase_17 AC 39 ms
51,872 KB
testcase_18 AC 39 ms
52,296 KB
testcase_19 AC 39 ms
53,556 KB
testcase_20 AC 39 ms
52,332 KB
testcase_21 AC 39 ms
52,028 KB
testcase_22 AC 39 ms
52,880 KB
testcase_23 AC 39 ms
52,524 KB
testcase_24 AC 39 ms
52,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

S = sum(Y)
X = [0]*n
for i in range(n):
    X[i] = S - (n-1)*Y[i]
print(*X)
0