結果

問題 No.970 数列変換マシン
ユーザー jp_stejp_ste
提出日時 2020-04-10 07:03:17
言語 JavaScript
(node v23.5.0)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 62,132 KB
最終ジャッジ日時 2024-10-13 01:40:59
合計ジャッジ時間 4,277 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

function main(input) {
	input = input.split("\n");
	const n = parseInt(input.shift());
	let y = input.shift().split(" ").map(function(e) {
	   return parseInt(e);     
	});
	let s = y.reduce(function(a, b) {
	   return a + b; 
	}, 0);
	let out = "";
	y.forEach(function(e, i) {
	   if(i > 0) out += " ";
	   out += (s - e * (n - 1));
	});
	console.log(out);
}

main(require("fs").readFileSync("/dev/stdin", "utf8"));
0