結果

問題 No.970 数列変換マシン
ユーザー yansi819yansi819
提出日時 2024-05-11 14:32:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 94,040 KB
最終ジャッジ日時 2024-12-20 08:35:49
合計ジャッジ時間 3,538 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
93,904 KB
testcase_01 AC 91 ms
94,040 KB
testcase_02 AC 90 ms
93,828 KB
testcase_03 AC 82 ms
92,828 KB
testcase_04 AC 84 ms
92,424 KB
testcase_05 AC 85 ms
93,304 KB
testcase_06 AC 82 ms
92,056 KB
testcase_07 AC 84 ms
92,532 KB
testcase_08 AC 85 ms
92,684 KB
testcase_09 AC 44 ms
59,100 KB
testcase_10 AC 45 ms
59,560 KB
testcase_11 AC 50 ms
63,392 KB
testcase_12 AC 52 ms
63,420 KB
testcase_13 AC 47 ms
60,032 KB
testcase_14 AC 52 ms
63,664 KB
testcase_15 AC 39 ms
52,092 KB
testcase_16 AC 39 ms
52,876 KB
testcase_17 AC 40 ms
53,560 KB
testcase_18 AC 38 ms
53,280 KB
testcase_19 AC 38 ms
52,676 KB
testcase_20 AC 39 ms
52,672 KB
testcase_21 AC 39 ms
52,108 KB
testcase_22 AC 39 ms
53,092 KB
testcase_23 AC 41 ms
52,648 KB
testcase_24 AC 41 ms
52,124 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 - y[i] * (N - 1)
print(*x)
0