結果

問題 No.126 2基のエレベータ
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-07-04 10:17:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 522 bytes
コンパイル時間 3,383 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 41,796 KB
最終ジャッジ日時 2024-10-10 18:33:26
合計ジャッジ時間 8,267 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,596 KB
testcase_01 AC 133 ms
41,436 KB
testcase_02 AC 132 ms
41,564 KB
testcase_03 AC 130 ms
41,132 KB
testcase_04 AC 131 ms
41,388 KB
testcase_05 AC 132 ms
41,420 KB
testcase_06 AC 132 ms
41,368 KB
testcase_07 AC 133 ms
41,580 KB
testcase_08 AC 118 ms
40,156 KB
testcase_09 AC 132 ms
41,496 KB
testcase_10 AC 130 ms
40,940 KB
testcase_11 AC 132 ms
41,412 KB
testcase_12 AC 134 ms
41,540 KB
testcase_13 AC 119 ms
40,416 KB
testcase_14 AC 131 ms
41,388 KB
testcase_15 AC 116 ms
41,100 KB
testcase_16 AC 118 ms
40,280 KB
testcase_17 AC 126 ms
41,276 KB
testcase_18 AC 132 ms
41,408 KB
testcase_19 AC 131 ms
41,524 KB
testcase_20 AC 131 ms
41,236 KB
testcase_21 AC 129 ms
41,232 KB
testcase_22 AC 131 ms
41,224 KB
testcase_23 AC 129 ms
41,276 KB
testcase_24 AC 130 ms
41,388 KB
testcase_25 AC 130 ms
41,324 KB
testcase_26 AC 131 ms
41,796 KB
testcase_27 AC 130 ms
41,148 KB
testcase_28 AC 131 ms
41,272 KB
testcase_29 AC 131 ms
41,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No126{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int a = sc.nextInt();
		int b = sc.nextInt();
		int s = sc.nextInt();

		if(s == 1){
			System.out.println(Math.abs(s-a)+s);
			return;
		}
		if(Math.abs(s-a) <= Math.abs(s-b)){
			System.out.println(Math.abs(s-a)+s);
		}else{
			if(Math.abs(a-s) <= (s-1)){
				System.out.println(Math.abs(s-b)+Math.abs(a-s)+a);
			}else{
				System.out.println(Math.abs(s-b)+(s-1)+Math.abs(a-1)+1);
			}
		}
	}
}
0