結果

問題 No.126 2基のエレベータ
ユーザー tentententen
提出日時 2020-10-15 18:39:42
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 618 bytes
コンパイル時間 1,766 ms
コンパイル使用メモリ 74,752 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-07-20 19:52:02
合計ジャッジ時間 6,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
39,936 KB
testcase_01 AC 108 ms
41,068 KB
testcase_02 AC 104 ms
40,564 KB
testcase_03 AC 108 ms
40,924 KB
testcase_04 AC 103 ms
40,184 KB
testcase_05 AC 114 ms
41,420 KB
testcase_06 AC 108 ms
41,176 KB
testcase_07 AC 110 ms
41,296 KB
testcase_08 AC 108 ms
40,908 KB
testcase_09 AC 105 ms
40,052 KB
testcase_10 AC 113 ms
41,472 KB
testcase_11 AC 113 ms
41,052 KB
testcase_12 AC 112 ms
41,172 KB
testcase_13 AC 100 ms
40,284 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 104 ms
40,256 KB
testcase_17 WA -
testcase_18 AC 104 ms
40,288 KB
testcase_19 AC 113 ms
41,308 KB
testcase_20 WA -
testcase_21 AC 109 ms
41,560 KB
testcase_22 AC 110 ms
41,304 KB
testcase_23 AC 114 ms
41,040 KB
testcase_24 AC 106 ms
40,284 KB
testcase_25 AC 96 ms
39,900 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 93 ms
39,708 KB
testcase_29 AC 104 ms
40,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	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 ans;
		if (s == 1) {
		    if (a == 0) {
		        ans = 2;
		    } else {
		        ans = a;
		    }
		} else {
		    if (Math.abs(a - s) > Math.abs(b - s)) {
		        ans = Math.abs(b - s);
		        if (a == 0) {
		            ans += s - 1 + 2;
		        } else {
		            ans += Math.abs(a - s) + a;
		        }
		    } else {
		        ans = Math.abs(s - a) + s;
		    }
		}
		System.out.println(ans);
	}
}
0