結果

問題 No.126 2基のエレベータ
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-19 17:54:29
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 589 bytes
コンパイル時間 3,335 ms
コンパイル使用メモリ 74,132 KB
実行使用メモリ 54,840 KB
最終ジャッジ日時 2024-07-08 09:18:15
合計ジャッジ時間 7,610 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,648 KB
testcase_01 WA -
testcase_02 AC 112 ms
41,248 KB
testcase_03 AC 96 ms
40,044 KB
testcase_04 AC 113 ms
41,628 KB
testcase_05 AC 102 ms
41,160 KB
testcase_06 AC 102 ms
41,420 KB
testcase_07 WA -
testcase_08 AC 109 ms
41,312 KB
testcase_09 AC 119 ms
41,388 KB
testcase_10 AC 107 ms
41,160 KB
testcase_11 AC 109 ms
41,004 KB
testcase_12 AC 111 ms
40,004 KB
testcase_13 AC 117 ms
41,188 KB
testcase_14 AC 119 ms
41,356 KB
testcase_15 AC 124 ms
41,652 KB
testcase_16 AC 113 ms
41,588 KB
testcase_17 AC 103 ms
41,196 KB
testcase_18 AC 115 ms
41,120 KB
testcase_19 AC 103 ms
41,600 KB
testcase_20 AC 115 ms
41,368 KB
testcase_21 AC 111 ms
41,212 KB
testcase_22 AC 112 ms
41,212 KB
testcase_23 AC 98 ms
41,160 KB
testcase_24 AC 109 ms
41,396 KB
testcase_25 AC 96 ms
40,644 KB
testcase_26 AC 114 ms
41,272 KB
testcase_27 AC 102 ms
41,184 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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();
		int l = 0; //距離
		if(S == 0) {
			System.out.println(0);
			return;
		}
		if(S == 1) {
			System.out.println(Math.abs(A-S) + S);
			return;
		}
		
		if(Math.abs(A-S) <= Math.abs(B-S)) {
			System.out.println(Math.abs(A-S) + S);
		}else if(Math.abs(S-1) <= Math.abs(S-A)) {
			System.out.println(Math.abs(S-B)+S-1+A);
		}
		else {
				System.out.println(Math.abs(A-B)+A);
		}
		
	}
}
0