結果

問題 No.451 575
ユーザー cielciel
提出日時 2016-12-03 23:24:42
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 214 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-05-09 19:08:35
合計ジャッジ時間 7,401 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,160 KB
testcase_01 AC 83 ms
12,416 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 78 ms
12,288 KB
testcase_05 AC 83 ms
12,544 KB
testcase_06 AC 88 ms
12,544 KB
testcase_07 AC 191 ms
14,208 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 78 ms
12,160 KB
testcase_15 AC 83 ms
12,416 KB
testcase_16 AC 98 ms
12,544 KB
testcase_17 AC 183 ms
14,080 KB
testcase_18 AC 172 ms
13,952 KB
testcase_19 AC 140 ms
13,568 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 80 ms
12,416 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 77 ms
12,288 KB
testcase_27 AC 78 ms
12,160 KB
testcase_28 AC 80 ms
12,416 KB
testcase_29 AC 89 ms
12,672 KB
testcase_30 AC 177 ms
14,080 KB
testcase_31 AC 82 ms
12,160 KB
testcase_32 AC 115 ms
12,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:11: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

n,*b=$<.map &:to_i
l,h=1,1<<60
n.times{|i|
	if i%2==0
		l,h=[l-b[i],1].max,h-b[i]
	else
		l,h=[b[i]-h,1].max,b[i]-l
	end
}
if l>h
	p -1
else
	a=[l]
	(n-1).downto(0){|i|a<<b[i]+a[-1]*(i%2*2-1)}
	p n+1,*a.reverse
end
0