結果

問題 No.126 2基のエレベータ
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-07-04 10:08:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 420 bytes
コンパイル時間 3,444 ms
コンパイル使用メモリ 74,724 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-07-01 02:07:57
合計ジャッジ時間 8,623 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 132 ms
53,748 KB
testcase_02 AC 135 ms
53,784 KB
testcase_03 AC 134 ms
53,836 KB
testcase_04 AC 134 ms
54,116 KB
testcase_05 AC 136 ms
53,880 KB
testcase_06 AC 133 ms
53,992 KB
testcase_07 AC 137 ms
54,076 KB
testcase_08 AC 135 ms
53,996 KB
testcase_09 AC 136 ms
53,976 KB
testcase_10 AC 136 ms
53,992 KB
testcase_11 AC 138 ms
54,188 KB
testcase_12 AC 135 ms
54,088 KB
testcase_13 AC 134 ms
54,080 KB
testcase_14 AC 134 ms
53,932 KB
testcase_15 AC 135 ms
53,976 KB
testcase_16 WA -
testcase_17 AC 135 ms
54,124 KB
testcase_18 AC 136 ms
54,096 KB
testcase_19 AC 136 ms
53,916 KB
testcase_20 AC 131 ms
54,064 KB
testcase_21 AC 133 ms
53,972 KB
testcase_22 AC 136 ms
53,756 KB
testcase_23 AC 137 ms
54,072 KB
testcase_24 AC 136 ms
53,972 KB
testcase_25 AC 140 ms
53,884 KB
testcase_26 AC 133 ms
53,776 KB
testcase_27 AC 133 ms
53,900 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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{
			System.out.println(Math.abs(s-b)+(s-1)+Math.abs(a-1)+1);
		}
	}
}
0