結果

問題 No.126 2基のエレベータ
ユーザー tsunabittsunabit
提出日時 2020-03-03 21:53:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 512 bytes
コンパイル時間 3,298 ms
コンパイル使用メモリ 76,348 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-10-10 18:36:14
合計ジャッジ時間 8,221 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,932 KB
testcase_01 AC 132 ms
53,968 KB
testcase_02 AC 132 ms
53,788 KB
testcase_03 AC 134 ms
53,660 KB
testcase_04 AC 132 ms
54,084 KB
testcase_05 AC 130 ms
53,692 KB
testcase_06 AC 130 ms
53,620 KB
testcase_07 AC 131 ms
53,892 KB
testcase_08 AC 131 ms
53,528 KB
testcase_09 AC 131 ms
53,996 KB
testcase_10 AC 132 ms
53,900 KB
testcase_11 AC 132 ms
53,804 KB
testcase_12 AC 137 ms
53,900 KB
testcase_13 AC 135 ms
53,996 KB
testcase_14 AC 132 ms
53,772 KB
testcase_15 AC 133 ms
54,200 KB
testcase_16 AC 131 ms
53,924 KB
testcase_17 AC 131 ms
53,940 KB
testcase_18 AC 132 ms
54,008 KB
testcase_19 AC 132 ms
53,592 KB
testcase_20 AC 131 ms
53,836 KB
testcase_21 AC 130 ms
53,624 KB
testcase_22 AC 131 ms
53,900 KB
testcase_23 AC 129 ms
54,012 KB
testcase_24 AC 130 ms
53,780 KB
testcase_25 AC 131 ms
53,800 KB
testcase_26 AC 133 ms
53,836 KB
testcase_27 AC 130 ms
54,172 KB
testcase_28 AC 131 ms
54,356 KB
testcase_29 AC 131 ms
53,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No126 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt(), b = sc.nextInt(), s = sc.nextInt();
		int t = 0;
		if(Math.abs(a-s) <= Math.abs(b-s) || s == 1) {
			t = Math.abs(a-s) + s;
		}else {
			// 1階へ
			t = Math.abs(b-s) + (s-1) + Math.abs(a-1) + 1;
			// Aへ
			int u = Math.abs(b-s) + Math.abs(a-s) + Math.abs(a-1) + 1;
			t = Math.min(t, u);
		}
		System.out.println(t);
	}
}
0