結果

問題 No.126 2基のエレベータ
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-06 20:06:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 625 bytes
コンパイル時間 1,920 ms
コンパイル使用メモリ 74,644 KB
実行使用メモリ 56,320 KB
最終ジャッジ日時 2024-07-04 03:27:40
合計ジャッジ時間 6,735 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 127 ms
54,048 KB
testcase_03 AC 126 ms
53,844 KB
testcase_04 AC 130 ms
54,000 KB
testcase_05 AC 130 ms
54,128 KB
testcase_06 AC 134 ms
53,900 KB
testcase_07 WA -
testcase_08 AC 127 ms
54,024 KB
testcase_09 AC 123 ms
53,812 KB
testcase_10 AC 129 ms
53,844 KB
testcase_11 AC 134 ms
53,756 KB
testcase_12 AC 133 ms
54,308 KB
testcase_13 AC 128 ms
54,096 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 129 ms
54,196 KB
testcase_19 AC 126 ms
53,940 KB
testcase_20 WA -
testcase_21 AC 132 ms
54,192 KB
testcase_22 AC 125 ms
54,044 KB
testcase_23 AC 128 ms
53,704 KB
testcase_24 AC 132 ms
54,072 KB
testcase_25 AC 130 ms
54,236 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 126 ms
54,288 KB
testcase_29 AC 129 ms
54,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int a = koko.nextInt();
        int b = koko.nextInt();
        int s = koko.nextInt();
        int dista = Math.abs(a-s);
        int distb = Math.abs(b-s);
        int min;
        if(dista<=distb){
            min = dista+s;
        }else if(distb<dista&&s==1){
            min = dista+1;
        }else if(distb<dista&&a>b){
            min = distb+s+a+1;
        }else{
            min = distb+dista+a;
        }
        System.out.println(min);
    }    
}
0