結果

問題 No.970 数列変換マシン
ユーザー ntudantuda
提出日時 2024-01-05 22:10:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 99,420 KB
最終ジャッジ日時 2024-09-27 19:10:41
合計ジャッジ時間 3,569 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
99,384 KB
testcase_01 AC 92 ms
99,420 KB
testcase_02 AC 92 ms
99,344 KB
testcase_03 AC 87 ms
97,876 KB
testcase_04 AC 88 ms
97,952 KB
testcase_05 AC 89 ms
98,280 KB
testcase_06 AC 83 ms
97,612 KB
testcase_07 AC 85 ms
98,024 KB
testcase_08 AC 84 ms
98,076 KB
testcase_09 AC 42 ms
59,960 KB
testcase_10 AC 42 ms
59,112 KB
testcase_11 AC 50 ms
63,716 KB
testcase_12 AC 48 ms
63,768 KB
testcase_13 AC 42 ms
59,372 KB
testcase_14 AC 49 ms
64,436 KB
testcase_15 AC 36 ms
52,960 KB
testcase_16 AC 36 ms
52,556 KB
testcase_17 AC 35 ms
52,912 KB
testcase_18 AC 36 ms
52,580 KB
testcase_19 AC 35 ms
52,968 KB
testcase_20 AC 36 ms
54,304 KB
testcase_21 AC 36 ms
52,612 KB
testcase_22 AC 36 ms
53,292 KB
testcase_23 AC 36 ms
53,180 KB
testcase_24 AC 36 ms
53,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
Y = list(map(int,input().split()))
S = sum(Y)
ans = []
for i in range(N):
    ans.append(S - (N-1)*Y[i])
print(*ans)
0