結果

問題 No.281 門松と魔法(1)
コンテスト
ユーザー yuki2006
提出日時 2015-09-18 20:23:13
言語 Go
(1.25.5)
結果
WA  
実行時間 -
コード長 1,546 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 13,447 ms
コンパイル使用メモリ 250,916 KB
実行使用メモリ 7,852 KB
最終ジャッジ日時 2026-01-02 12:33:50
合計ジャッジ時間 15,536 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31 WA * 19 RE * 7
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

package main

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

func main() {
	// Scan開始前にSplitを設定しないとPanicになるため、ここに移動
	s.Split(bufio.ScanWords)

	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) // 削除: Scan後に呼ぶとPanicになるため
	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