結果

問題 No.126 2基のエレベータ
ユーザー htensaihtensai
提出日時 2020-02-06 09:05:01
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 518 bytes
コンパイル時間 2,204 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 41,720 KB
最終ジャッジ日時 2024-09-25 02:57:03
合計ジャッジ時間 6,865 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,388 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 115 ms
41,324 KB
testcase_04 AC 130 ms
41,116 KB
testcase_05 AC 129 ms
41,484 KB
testcase_06 AC 129 ms
41,064 KB
testcase_07 WA -
testcase_08 AC 128 ms
41,420 KB
testcase_09 AC 129 ms
41,336 KB
testcase_10 AC 129 ms
41,240 KB
testcase_11 AC 129 ms
41,244 KB
testcase_12 AC 131 ms
41,260 KB
testcase_13 AC 130 ms
41,036 KB
testcase_14 AC 131 ms
41,320 KB
testcase_15 AC 130 ms
41,284 KB
testcase_16 AC 134 ms
41,604 KB
testcase_17 AC 132 ms
41,196 KB
testcase_18 AC 132 ms
41,720 KB
testcase_19 AC 129 ms
41,328 KB
testcase_20 AC 130 ms
41,356 KB
testcase_21 AC 132 ms
41,432 KB
testcase_22 AC 128 ms
41,292 KB
testcase_23 AC 133 ms
41,132 KB
testcase_24 AC 128 ms
41,444 KB
testcase_25 AC 131 ms
41,608 KB
testcase_26 AC 129 ms
41,464 KB
testcase_27 AC 128 ms
41,176 KB
testcase_28 AC 129 ms
41,176 KB
testcase_29 AC 128 ms
41,276 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 (a == 0 || Math.abs(s - a) <= Math.abs(s - b)) {
            ans = Math.abs(s - a) + s;
        } else {
            ans = Math.min(Math.abs(s - b) + s - 1 + Math.abs(a - 1) + 1, Math.abs(s - b) + Math.abs(s - a) + a);
        }
        System.out.println(ans);
    }
}
0