結果

問題 No.970 数列変換マシン
ユーザー hedwig100hedwig100
提出日時 2020-04-08 18:17:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,880 KB
最終ジャッジ日時 2024-07-19 01:37:24
合計ジャッジ時間 3,532 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
20,084 KB
testcase_01 AC 124 ms
20,340 KB
testcase_02 AC 123 ms
20,088 KB
testcase_03 AC 119 ms
20,744 KB
testcase_04 AC 121 ms
20,876 KB
testcase_05 AC 121 ms
20,880 KB
testcase_06 AC 108 ms
13,952 KB
testcase_07 AC 117 ms
20,628 KB
testcase_08 AC 118 ms
20,652 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 28 ms
11,008 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 28 ms
10,880 KB
testcase_14 AC 29 ms
11,136 KB
testcase_15 AC 25 ms
10,752 KB
testcase_16 AC 27 ms
10,752 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 27 ms
10,624 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 27 ms
10,752 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 27 ms
10,752 KB
testcase_23 AC 27 ms
10,624 KB
testcase_24 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 10
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from collections import deque

def main():
    n = int(input())
    Y = list(map(int,input().split()))
    if n == 2:
        print(Y[1],Y[0])
        return
    x = sum(Y)
    X = [x] * n
    for i in range(n):
        X[i] -= (n - 1) * Y[i]
    
    print(*X)

if __name__ =='__main__':
    main()  
0