結果

問題 No.126 2基のエレベータ
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-21 17:17:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 658 bytes
コンパイル時間 1,835 ms
コンパイル使用メモリ 74,140 KB
実行使用メモリ 54,060 KB
最終ジャッジ日時 2024-11-27 09:28:06
合計ジャッジ時間 6,255 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 114 ms
54,060 KB
testcase_02 AC 117 ms
53,832 KB
testcase_03 AC 112 ms
43,876 KB
testcase_04 AC 112 ms
43,908 KB
testcase_05 AC 107 ms
43,392 KB
testcase_06 AC 115 ms
44,184 KB
testcase_07 AC 115 ms
44,084 KB
testcase_08 AC 112 ms
42,860 KB
testcase_09 AC 115 ms
43,796 KB
testcase_10 AC 113 ms
43,652 KB
testcase_11 AC 116 ms
44,000 KB
testcase_12 AC 115 ms
44,272 KB
testcase_13 AC 119 ms
44,288 KB
testcase_14 AC 114 ms
44,160 KB
testcase_15 AC 108 ms
42,696 KB
testcase_16 WA -
testcase_17 AC 120 ms
44,160 KB
testcase_18 AC 119 ms
43,932 KB
testcase_19 AC 118 ms
43,876 KB
testcase_20 AC 123 ms
44,240 KB
testcase_21 AC 121 ms
44,012 KB
testcase_22 AC 119 ms
44,284 KB
testcase_23 AC 117 ms
44,160 KB
testcase_24 AC 120 ms
45,036 KB
testcase_25 AC 109 ms
43,656 KB
testcase_26 AC 117 ms
44,300 KB
testcase_27 AC 120 ms
44,068 KB
testcase_28 AC 114 ms
43,932 KB
testcase_29 AC 123 ms
44,060 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 min=0;
        int Amove=Math.abs(A-S);
        int Bmove=Math.abs(B-S);
        if(S==1){
            min=Amove+1;
        }else{
            if(Amove<=Bmove){
                min=Amove+S;
            }else{
                if(A>B||A==0){
                    min=Bmove+S+Math.abs(A-1);
                }else{
                    min=Bmove+S;
                }
            }
        }
        System.out.println(min);
    }
}
0