結果

問題 No.126 2基のエレベータ
ユーザー tsunatama5tsunatama5
提出日時 2015-09-21 00:15:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 916 bytes
コンパイル時間 3,489 ms
コンパイル使用メモリ 77,292 KB
実行使用メモリ 41,708 KB
最終ジャッジ日時 2024-10-10 18:27:45
合計ジャッジ時間 8,198 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,284 KB
testcase_01 AC 128 ms
41,576 KB
testcase_02 AC 130 ms
41,116 KB
testcase_03 AC 127 ms
41,184 KB
testcase_04 AC 128 ms
40,996 KB
testcase_05 AC 127 ms
41,124 KB
testcase_06 AC 125 ms
40,836 KB
testcase_07 AC 115 ms
39,848 KB
testcase_08 AC 113 ms
40,192 KB
testcase_09 AC 126 ms
41,336 KB
testcase_10 AC 113 ms
40,048 KB
testcase_11 AC 124 ms
41,312 KB
testcase_12 AC 126 ms
41,468 KB
testcase_13 AC 126 ms
41,200 KB
testcase_14 AC 127 ms
41,200 KB
testcase_15 AC 128 ms
40,964 KB
testcase_16 AC 117 ms
40,108 KB
testcase_17 AC 126 ms
40,884 KB
testcase_18 AC 113 ms
39,980 KB
testcase_19 AC 125 ms
41,216 KB
testcase_20 AC 126 ms
41,116 KB
testcase_21 AC 126 ms
40,988 KB
testcase_22 AC 128 ms
41,312 KB
testcase_23 AC 113 ms
39,848 KB
testcase_24 AC 122 ms
41,120 KB
testcase_25 AC 123 ms
41,708 KB
testcase_26 AC 115 ms
39,784 KB
testcase_27 AC 124 ms
41,220 KB
testcase_28 AC 116 ms
40,388 KB
testcase_29 AC 127 ms
40,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package P126;

import java.util.Scanner;

public class P126 {
	
	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		String r = sc.nextLine();
		String[] rstrs = r.split(" ",0);

		int a = Integer.parseInt(rstrs[0]);
		int b = Integer.parseInt(rstrs[1]);
		int s = Integer.parseInt(rstrs[2]);
		int ans = 0;
		
		if (s == 1) {
			ans = Math.abs(s-a) + 1;
		} else if (Math.abs(s-a) <= Math.abs(s-b) && s != 1) {
			ans = Math.abs(s-a) + (s-0);
		} else if (Math.abs(s-a) > Math.abs(s-b) && a == 0 && s != 1) {
			ans = Math.abs(s-b) + Math.abs(s-1) + Math.abs(a-1) + Math.abs(1-a);
		} else if ((Math.abs(s-a) > Math.abs(s-b) && a != 0 && s != 1)){
			if (Math.abs(s-a)<Math.abs(s-1)) {
				ans = Math.abs(s-b) + Math.abs(s-a) + Math.abs(a);
			} else if (Math.abs(s-a)>=Math.abs(s-1)){
				ans = Math.abs(s-b) + Math.abs(s-1) + Math.abs(a);
			}
		}
		
		System.out.println(ans);
	}
}
0