結果

問題 No.970 数列変換マシン
ユーザー uni_pythonuni_python
提出日時 2020-09-13 20:07:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 87,948 KB
最終ジャッジ日時 2024-06-13 04:27:52
合計ジャッジ時間 3,582 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
87,948 KB
testcase_01 AC 77 ms
86,564 KB
testcase_02 AC 74 ms
87,364 KB
testcase_03 AC 68 ms
85,388 KB
testcase_04 AC 68 ms
85,720 KB
testcase_05 AC 69 ms
85,412 KB
testcase_06 AC 67 ms
83,976 KB
testcase_07 AC 70 ms
85,240 KB
testcase_08 AC 69 ms
84,588 KB
testcase_09 AC 42 ms
54,040 KB
testcase_10 AC 41 ms
53,612 KB
testcase_11 AC 47 ms
60,384 KB
testcase_12 AC 46 ms
59,592 KB
testcase_13 AC 41 ms
52,824 KB
testcase_14 AC 47 ms
60,400 KB
testcase_15 AC 41 ms
53,648 KB
testcase_16 AC 41 ms
52,348 KB
testcase_17 AC 41 ms
53,848 KB
testcase_18 AC 42 ms
52,524 KB
testcase_19 AC 42 ms
52,620 KB
testcase_20 AC 39 ms
52,116 KB
testcase_21 AC 40 ms
53,316 KB
testcase_22 AC 40 ms
53,488 KB
testcase_23 AC 40 ms
53,368 KB
testcase_24 AC 39 ms
52,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    N=I()
    Y=LI()
    S=sum(Y)
    X=[0]*N
    
    for i in range(N):
        X[i]=S-Y[i]*(N-1)
        
    print(' '.join(map(str, X)))
        


main()
0