結果

問題 No.126 2基のエレベータ
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-21 17:05:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 553 bytes
コンパイル時間 1,938 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-11-27 09:27:48
合計ジャッジ時間 6,435 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 118 ms
41,148 KB
testcase_02 AC 120 ms
41,472 KB
testcase_03 AC 116 ms
41,084 KB
testcase_04 AC 122 ms
41,108 KB
testcase_05 AC 108 ms
39,952 KB
testcase_06 AC 118 ms
41,096 KB
testcase_07 AC 105 ms
39,744 KB
testcase_08 AC 113 ms
40,744 KB
testcase_09 AC 102 ms
39,716 KB
testcase_10 AC 100 ms
39,816 KB
testcase_11 AC 114 ms
41,160 KB
testcase_12 AC 116 ms
41,236 KB
testcase_13 AC 114 ms
41,264 KB
testcase_14 AC 105 ms
39,916 KB
testcase_15 AC 104 ms
40,188 KB
testcase_16 WA -
testcase_17 AC 116 ms
41,136 KB
testcase_18 AC 117 ms
41,404 KB
testcase_19 AC 116 ms
40,816 KB
testcase_20 AC 116 ms
40,956 KB
testcase_21 AC 111 ms
40,320 KB
testcase_22 AC 120 ms
41,380 KB
testcase_23 AC 116 ms
41,124 KB
testcase_24 AC 112 ms
39,728 KB
testcase_25 AC 118 ms
41,344 KB
testcase_26 AC 111 ms
41,124 KB
testcase_27 AC 115 ms
40,960 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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{
                min+=Bmove+S+Math.abs(A-1);
            }
        }
        System.out.println(min);
    }
}
0