結果

問題 No.48 ロボットの操縦
ユーザー rkyrky
提出日時 2017-11-06 11:24:38
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 639 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-05-03 05:42:22
合計ジャッジ時間 7,076 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,032 KB
testcase_01 AC 92 ms
12,032 KB
testcase_02 WA -
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class No48
	attr_accessor :width, :height, :distance, :count

	def initialize
		@width, @height, @distance = gets.chomp.to_i, gets.chomp.to_i, gets.chomp.to_i
		@count = 0
	end

	def negative_number(num)
		if num < 0
			num *= -1
			@count += 1
		end
		num
	end

	def move_on(num)
		unless num == 0
			num < @distance ? num = 0 : num -= @distance
			@count += 1
		end
		num
	end

	def run
		@width = self.negative_number(@width)
		@height = self.negative_number(@height)
		loop{
			@width = self.move_on(@width)
			@height = self.move_on(@height)
			break if @width == 0 && @height == 0
		}
		@count
	end
end

no48 = No48.new
puts no48.run
0