結果

問題 No.970 数列変換マシン
ユーザー dangodango
提出日時 2023-07-15 20:09:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 86,964 KB
最終ジャッジ日時 2024-09-17 04:52:04
合計ジャッジ時間 2,824 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
86,148 KB
testcase_01 AC 78 ms
85,928 KB
testcase_02 AC 69 ms
86,964 KB
testcase_03 AC 65 ms
85,340 KB
testcase_04 AC 67 ms
85,028 KB
testcase_05 AC 68 ms
85,096 KB
testcase_06 AC 64 ms
82,412 KB
testcase_07 AC 67 ms
86,292 KB
testcase_08 AC 66 ms
84,408 KB
testcase_09 AC 41 ms
52,564 KB
testcase_10 AC 41 ms
54,556 KB
testcase_11 AC 45 ms
59,912 KB
testcase_12 AC 47 ms
59,720 KB
testcase_13 AC 40 ms
54,064 KB
testcase_14 AC 44 ms
59,948 KB
testcase_15 AC 38 ms
52,408 KB
testcase_16 AC 39 ms
52,736 KB
testcase_17 AC 38 ms
52,600 KB
testcase_18 AC 38 ms
52,064 KB
testcase_19 AC 38 ms
53,364 KB
testcase_20 AC 37 ms
53,228 KB
testcase_21 AC 38 ms
52,232 KB
testcase_22 AC 39 ms
52,624 KB
testcase_23 AC 38 ms
52,360 KB
testcase_24 AC 38 ms
51,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
y = list(map(int, input().split()))
r = sum(y)
print(' '.join([str(r - k * (n - 1)) for k in y]))
0