結果

問題 No.970 数列変換マシン
ユーザー horiesinitihoriesiniti
提出日時 2023-02-11 14:40:14
言語 Ruby
(3.3.0)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 24,064 KB
最終ジャッジ日時 2024-07-08 03:38:12
合計ジャッジ時間 5,466 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 220 ms
23,936 KB
testcase_01 AC 222 ms
24,064 KB
testcase_02 AC 217 ms
24,064 KB
testcase_03 AC 207 ms
23,680 KB
testcase_04 AC 207 ms
23,552 KB
testcase_05 AC 210 ms
23,936 KB
testcase_06 AC 201 ms
23,424 KB
testcase_07 AC 204 ms
23,552 KB
testcase_08 AC 205 ms
23,808 KB
testcase_09 AC 93 ms
12,032 KB
testcase_10 AC 94 ms
12,032 KB
testcase_11 AC 98 ms
12,288 KB
testcase_12 AC 93 ms
12,160 KB
testcase_13 AC 92 ms
12,032 KB
testcase_14 AC 95 ms
12,416 KB
testcase_15 AC 91 ms
12,032 KB
testcase_16 AC 90 ms
12,032 KB
testcase_17 AC 92 ms
12,032 KB
testcase_18 AC 90 ms
12,160 KB
testcase_19 AC 93 ms
12,032 KB
testcase_20 AC 92 ms
12,288 KB
testcase_21 AC 90 ms
12,160 KB
testcase_22 AC 90 ms
12,032 KB
testcase_23 AC 89 ms
12,032 KB
testcase_24 AC 90 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
ys=gets.split(" ").map{|e| e.to_i}
if ys.size==2 then
	puts ys.reverse.join(" ")
else 
	xs=[]
	s1=0
	ys.each_cons(2){|a,b|
		xs<<-(b-a+s1)*(n-1)
		s1+=b-a
	}
	a2=(ys.sum-xs.sum)/n
	xs.unshift(0)
	puts xs.map{|e| e+a2}.join(" ")
end
0