結果

問題 No.970 数列変換マシン
ユーザー mlihua09mlihua09
提出日時 2020-09-01 22:13:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 105 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 100,024 KB
最終ジャッジ日時 2024-11-20 19:00:14
合計ジャッジ時間 3,123 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
99,488 KB
testcase_01 AC 85 ms
99,360 KB
testcase_02 AC 87 ms
99,228 KB
testcase_03 AC 84 ms
99,656 KB
testcase_04 AC 82 ms
99,680 KB
testcase_05 AC 82 ms
100,024 KB
testcase_06 AC 80 ms
98,576 KB
testcase_07 AC 82 ms
99,716 KB
testcase_08 AC 82 ms
99,436 KB
testcase_09 AC 38 ms
59,528 KB
testcase_10 AC 40 ms
60,192 KB
testcase_11 AC 45 ms
63,428 KB
testcase_12 AC 45 ms
63,268 KB
testcase_13 AC 40 ms
59,232 KB
testcase_14 AC 46 ms
63,804 KB
testcase_15 AC 34 ms
53,368 KB
testcase_16 AC 33 ms
52,688 KB
testcase_17 AC 38 ms
52,628 KB
testcase_18 AC 38 ms
52,176 KB
testcase_19 AC 38 ms
52,140 KB
testcase_20 AC 38 ms
52,140 KB
testcase_21 AC 38 ms
52,728 KB
testcase_22 AC 35 ms
52,416 KB
testcase_23 AC 35 ms
52,364 KB
testcase_24 AC 35 ms
52,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

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

S = sum(Y)

print(*(S - y * (N - 1) for y in Y))
0