結果

問題 No.126 2基のエレベータ
ユーザー tyochiaityochiai
提出日時 2015-01-17 06:38:42
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 598 bytes
コンパイル時間 10,868 ms
コンパイル使用メモリ 223,188 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-03 20:11:26
合計ジャッジ時間 10,481 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 WA -
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 WA -
testcase_13 AC 1 ms
6,944 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 WA -
testcase_21 AC 1 ms
6,944 KB
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 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"math"
	"sort"
)

func MaxInt(x, y int) int {
	return int(math.Max(float64(x), float64(y)))
}

func MinInt(x, y int) int {
	return int(math.Min(float64(x), float64(y)))
}

func AbsInt(x int) int {
	return int(math.Abs(float64(x)))
}

func SortInt(d []int) {
	sort.Sort(sort.IntSlice(d))
}

func resolve(A, B, S int) int {
	if A >= S {
		return A
	}
	if AbsInt(S-A) <= AbsInt(B-S) {
		return S - A + S
	}
	if A == 0 {
		return B - S + S + 1
	}
	return B - S + S
}

func main() {
	var A, B, S int

	fmt.Scanf("%d %d %d\n", &A, &B, &S)

	fmt.Println(resolve(A, B, S))
}
0