結果

問題 No.126 2基のエレベータ
ユーザー 37zigen37zigen
提出日時 2020-03-22 02:26:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 829 bytes
コンパイル時間 2,671 ms
コンパイル使用メモリ 77,852 KB
実行使用メモリ 54,124 KB
最終ジャッジ日時 2024-06-06 15:09:29
合計ジャッジ時間 7,101 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,920 KB
testcase_01 AC 117 ms
41,292 KB
testcase_02 AC 117 ms
41,084 KB
testcase_03 AC 119 ms
40,996 KB
testcase_04 AC 111 ms
41,536 KB
testcase_05 AC 117 ms
41,464 KB
testcase_06 AC 117 ms
40,904 KB
testcase_07 AC 108 ms
41,316 KB
testcase_08 AC 105 ms
41,488 KB
testcase_09 AC 103 ms
39,868 KB
testcase_10 AC 115 ms
41,432 KB
testcase_11 AC 104 ms
41,376 KB
testcase_12 AC 102 ms
41,096 KB
testcase_13 AC 120 ms
40,864 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 126 ms
41,112 KB
testcase_17 WA -
testcase_18 AC 103 ms
40,984 KB
testcase_19 AC 123 ms
41,300 KB
testcase_20 WA -
testcase_21 AC 108 ms
40,968 KB
testcase_22 AC 104 ms
41,144 KB
testcase_23 AC 119 ms
41,192 KB
testcase_24 AC 104 ms
40,236 KB
testcase_25 AC 122 ms
41,136 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 101 ms
41,012 KB
testcase_29 AC 118 ms
41,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.FileNotFoundException;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws FileNotFoundException {
		long t = System.currentTimeMillis();
		new Main().run();
		System.err.println(System.currentTimeMillis() - t);
	}
	
	void run() {
		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(A-S)+1);
		}else if(Math.abs(S-A)<=Math.abs(S-B)) {
			System.out.println(Math.abs(S-A)+Math.abs(S-0));
		}else {
			if(A>0) {
				System.out.println(Math.abs(S-B)+Math.abs(A-S)+Math.abs(A));
			}else {
				System.out.println(Math.abs(S-B)+Math.abs(S-1)+2);
			}
		}
	}


	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0