結果

問題 No.281 門松と魔法(1)
ユーザー yuki2006yuki2006
提出日時 2015-09-18 20:23:13
言語 Go1.4
(1.4.2)
結果
WA  
実行時間 -
コード長 1,370 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 33,344 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-03 20:33:00
合計ジャッジ時間 1,932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

package main

import (
	"fmt"
	"bufio"
	"os"
	"strconv"
)

func main() {
	var d = nextInt()
	var h1 = nextInt()
	var h2 = nextInt()
	var h3 = nextInt()



	if (h1-h2)*(h2-h3) < 0 {
		if h1 != h3 {
			fmt.Println(0)
			return

		}
		if h1-d == h2 {
			fmt.Println(-1)
			return
		}else {
			fmt.Println(1)
			return

		}
	}
	if h1 == h3 {
		if h1 == h2 {
			if h1 >= 2*d {
				fmt.Println(3)
				return
			}
			if h1 <= d {
				fmt.Println(1)
				return
			}
			fmt.Println(-1)
		}
		if h1 < d {
			fmt.Println(-1)
			return
		}

	}
	if h1 < h3 && h3 < d {
		fmt.Println(-1)
		return
	}
	if h1 > h3 && h1 < d {
		fmt.Println(-1)
		return
	}

	var A = abs(h2 - h1) / d + 1
	var B = abs(h3 - h2) / d + 1

	if h3-B*d <= 0 && h1 == 0 {
		fmt.Println(-1)
		return
	}
	if h1-A*d <= 0 && h3 == 0 {
		fmt.Println(-1)
		return
	}


	fmt.Println(min(A, B))
}

var s = bufio.NewScanner(os.Stdin)

func next() string {
	s.Split(bufio.ScanWords)
	s.Scan()
	return s.Text()
}
func nextLine() string {
	s.Split(bufio.ScanLines)
	s.Scan()
	return s.Text()
}

func nextInt() int {
	i, e := strconv.Atoi(next())
	if e != nil {
		panic(e)
	}
	return i
}
func nextLong() int64 {
	i, e := strconv.ParseInt(next(), 10, 64)
	if e != nil {
		panic(e)
	}
	return i
}
func abs(a int) int {
	if a < 0 {
		return -a
	}
	return a
}

func min(a int, b int) int {
	if a < b {
		return a
	}
	return b
}
0