結果

問題 No.970 数列変換マシン
ユーザー mlihua09mlihua09
提出日時 2020-09-01 22:13:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 105 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 87,292 KB
実行使用メモリ 100,900 KB
最終ジャッジ日時 2023-08-13 02:39:50
合計ジャッジ時間 4,882 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
100,484 KB
testcase_01 AC 127 ms
100,340 KB
testcase_02 AC 124 ms
100,444 KB
testcase_03 AC 120 ms
100,628 KB
testcase_04 AC 120 ms
100,496 KB
testcase_05 AC 121 ms
100,796 KB
testcase_06 AC 117 ms
99,804 KB
testcase_07 AC 119 ms
100,704 KB
testcase_08 AC 120 ms
100,900 KB
testcase_09 AC 78 ms
75,252 KB
testcase_10 AC 77 ms
75,456 KB
testcase_11 AC 83 ms
76,756 KB
testcase_12 AC 85 ms
76,712 KB
testcase_13 AC 78 ms
75,268 KB
testcase_14 AC 84 ms
76,624 KB
testcase_15 AC 73 ms
71,164 KB
testcase_16 AC 74 ms
71,272 KB
testcase_17 AC 73 ms
70,964 KB
testcase_18 AC 73 ms
71,144 KB
testcase_19 AC 71 ms
71,160 KB
testcase_20 AC 73 ms
71,268 KB
testcase_21 AC 71 ms
70,776 KB
testcase_22 AC 73 ms
71,192 KB
testcase_23 AC 73 ms
70,956 KB
testcase_24 AC 73 ms
71,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

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

S = sum(Y)

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