結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
93,832 KB
testcase_01 AC 84 ms
93,972 KB
testcase_02 AC 86 ms
93,688 KB
testcase_03 AC 79 ms
92,320 KB
testcase_04 AC 82 ms
92,720 KB
testcase_05 AC 80 ms
92,964 KB
testcase_06 AC 79 ms
91,616 KB
testcase_07 AC 79 ms
92,260 KB
testcase_08 AC 81 ms
92,528 KB
testcase_09 AC 42 ms
58,708 KB
testcase_10 AC 45 ms
60,260 KB
testcase_11 AC 48 ms
63,852 KB
testcase_12 AC 50 ms
63,676 KB
testcase_13 AC 42 ms
60,428 KB
testcase_14 AC 48 ms
63,608 KB
testcase_15 AC 37 ms
52,260 KB
testcase_16 AC 37 ms
52,816 KB
testcase_17 AC 37 ms
52,404 KB
testcase_18 AC 37 ms
52,416 KB
testcase_19 AC 37 ms
52,424 KB
testcase_20 AC 36 ms
53,168 KB
testcase_21 AC 38 ms
52,640 KB
testcase_22 AC 36 ms
52,492 KB
testcase_23 AC 36 ms
53,148 KB
testcase_24 AC 37 ms
53,004 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