結果

問題 No.281 門松と魔法(1)
ユーザー cielciel
提出日時 2020-02-08 19:09:18
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 714 bytes
コンパイル時間 18,294 ms
コンパイル使用メモリ 260,316 KB
実行使用メモリ 4,796 KB
最終ジャッジ日時 2023-09-13 10:10:13
合計ジャッジ時間 20,067 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 3 ms
4,460 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
4,520 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 3 ms
4,472 KB
testcase_15 WA -
testcase_16 AC 2 ms
4,448 KB
testcase_17 WA -
testcase_18 AC 2 ms
4,380 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 3 ms
4,392 KB
testcase_23 WA -
testcase_24 AC 3 ms
4,520 KB
testcase_25 AC 3 ms
4,500 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 2 ms
4,524 KB
testcase_30 AC 2 ms
4,508 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 2 ms
4,376 KB
testcase_34 WA -
testcase_35 AC 2 ms
4,476 KB
testcase_36 WA -
testcase_37 AC 2 ms
4,376 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 2 ms
4,448 KB
testcase_41 AC 2 ms
4,380 KB
testcase_42 AC 3 ms
4,384 KB
testcase_43 RE -
testcase_44 AC 3 ms
4,412 KB
testcase_45 WA -
testcase_46 RE -
testcase_47 WA -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 AC 3 ms
4,380 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 WA -
testcase_56 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env crystal
def solve_short(d,a,b,c)
	begin
		r=0
		if a==c
			c=[0,c-d].max
			r+=1
		end
		t=b-[a,c].min+1
		if t>0
			cnt=(t+d-1)/d
			r+=cnt
			b=[0,b-r*d].max
		end
		a==b || b==c ? -1 : r
	rescue DivisionByZeroError # changed in 0.25.0
		-1
	end
end
def solve_tall(d,a,b,c)
	begin
		r=0
		t=a-b+1
		if t>0
			cnt=(t+d-1)/d
			r+=cnt
			a=[0,a-cnt*d].max
		end
		t=c-b+1
		if t>0
			cnt=(t+d-1)/d
			r+=cnt
			c=[0,c-cnt*d].max
		end
		if a==c
			c=[0,c-d].max
			r+=1
		end
		a==b || b==c || c==a ? -1 : r
	rescue DivisionByZeroError # changed in 0.25.0
		-1
	end
end
d,a,b,c=4.times.map{gets.not_nil!.to_i}.to_a
x=solve_short(d,a,b,c)
y=solve_tall(d,a,b,c)
puts x>=0&&y>=0 ? [x,y].min : [x,y].max
0