結果

問題 No.126 2基のエレベータ
ユーザー kuramubonnkuramubonn
提出日時 2023-02-04 15:54:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 492 bytes
コンパイル時間 2,345 ms
コンパイル使用メモリ 74,604 KB
実行使用メモリ 41,748 KB
最終ジャッジ日時 2024-07-03 13:04:55
合計ジャッジ時間 6,799 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,548 KB
testcase_01 AC 124 ms
41,608 KB
testcase_02 AC 123 ms
41,484 KB
testcase_03 AC 112 ms
39,932 KB
testcase_04 AC 121 ms
41,072 KB
testcase_05 AC 109 ms
39,940 KB
testcase_06 AC 109 ms
39,944 KB
testcase_07 AC 116 ms
40,980 KB
testcase_08 AC 127 ms
41,748 KB
testcase_09 AC 116 ms
41,056 KB
testcase_10 AC 120 ms
41,328 KB
testcase_11 AC 109 ms
40,140 KB
testcase_12 AC 117 ms
41,044 KB
testcase_13 AC 107 ms
40,376 KB
testcase_14 AC 104 ms
40,372 KB
testcase_15 AC 119 ms
41,400 KB
testcase_16 AC 105 ms
39,924 KB
testcase_17 AC 121 ms
41,196 KB
testcase_18 AC 124 ms
41,236 KB
testcase_19 AC 123 ms
41,528 KB
testcase_20 AC 124 ms
41,148 KB
testcase_21 AC 112 ms
40,048 KB
testcase_22 AC 109 ms
40,256 KB
testcase_23 AC 124 ms
41,356 KB
testcase_24 AC 132 ms
40,960 KB
testcase_25 AC 123 ms
41,564 KB
testcase_26 AC 124 ms
41,412 KB
testcase_27 AC 120 ms
41,048 KB
testcase_28 AC 123 ms
41,348 KB
testcase_29 AC 118 ms
41,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt(),b = sc.nextInt(),s = sc.nextInt(),count = 0;
		if(Math.abs(a - s) <= Math.abs(b - s) || s == 1) {
			count += Math.abs(a - s) + s;
		}else {
			count += Math.abs(b - s);
			if(Math.abs(s - a) + a > (s - 1) + a) {
				count += s - 1 + a;
				if(a == 0)count += 2;
			}else {
				count += Math.abs(s - a) + a;
			}
		}
		System.out.println(count);
	}
}
0