結果

問題 No.126 2基のエレベータ
ユーザー tsunabittsunabit
提出日時 2020-03-03 21:58:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 457 bytes
コンパイル時間 3,409 ms
コンパイル使用メモリ 80,764 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-10-10 18:36:05
合計ジャッジ時間 8,358 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,580 KB
testcase_01 AC 129 ms
41,240 KB
testcase_02 AC 116 ms
40,340 KB
testcase_03 AC 129 ms
41,184 KB
testcase_04 AC 130 ms
41,120 KB
testcase_05 AC 131 ms
41,460 KB
testcase_06 AC 135 ms
41,472 KB
testcase_07 AC 134 ms
41,368 KB
testcase_08 AC 132 ms
41,452 KB
testcase_09 AC 130 ms
41,100 KB
testcase_10 AC 129 ms
41,232 KB
testcase_11 AC 131 ms
41,124 KB
testcase_12 AC 128 ms
41,364 KB
testcase_13 AC 130 ms
41,376 KB
testcase_14 AC 132 ms
41,116 KB
testcase_15 AC 132 ms
41,472 KB
testcase_16 AC 133 ms
41,260 KB
testcase_17 AC 132 ms
41,568 KB
testcase_18 AC 130 ms
40,980 KB
testcase_19 AC 132 ms
41,580 KB
testcase_20 AC 129 ms
41,492 KB
testcase_21 AC 131 ms
41,452 KB
testcase_22 AC 131 ms
41,120 KB
testcase_23 AC 115 ms
40,092 KB
testcase_24 AC 125 ms
41,084 KB
testcase_25 AC 131 ms
41,248 KB
testcase_26 AC 132 ms
41,116 KB
testcase_27 AC 131 ms
41,124 KB
testcase_28 AC 129 ms
41,552 KB
testcase_29 AC 129 ms
41,228 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();
		if(Math.abs(a-s) <= Math.abs(b-s) || s == 1) {
			System.out.println(Math.abs(a-s) + s);
		}else {
			System.out.println(Math.min(Math.abs(b-s) + (s-1) + Math.abs(a-1) + 1, Math.abs(b-s) + Math.abs(a-s) + Math.abs(a-1) + 1));
		}
	}
}
0