結果

問題 No.126 2基のエレベータ
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-06 20:17:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 801 bytes
コンパイル時間 2,073 ms
コンパイル使用メモリ 75,260 KB
実行使用メモリ 54,672 KB
最終ジャッジ日時 2024-10-10 18:25:31
合計ジャッジ時間 7,054 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,652 KB
testcase_01 AC 131 ms
53,620 KB
testcase_02 AC 131 ms
53,832 KB
testcase_03 AC 134 ms
54,672 KB
testcase_04 AC 131 ms
53,712 KB
testcase_05 AC 132 ms
53,904 KB
testcase_06 AC 131 ms
53,772 KB
testcase_07 AC 133 ms
53,636 KB
testcase_08 AC 133 ms
54,020 KB
testcase_09 AC 132 ms
53,900 KB
testcase_10 AC 132 ms
54,004 KB
testcase_11 AC 133 ms
54,008 KB
testcase_12 AC 132 ms
53,892 KB
testcase_13 AC 133 ms
53,860 KB
testcase_14 AC 134 ms
53,860 KB
testcase_15 AC 134 ms
53,856 KB
testcase_16 AC 133 ms
53,796 KB
testcase_17 AC 133 ms
53,656 KB
testcase_18 AC 134 ms
53,784 KB
testcase_19 AC 132 ms
53,880 KB
testcase_20 AC 136 ms
53,536 KB
testcase_21 AC 133 ms
53,916 KB
testcase_22 AC 132 ms
53,764 KB
testcase_23 AC 133 ms
53,876 KB
testcase_24 AC 132 ms
53,920 KB
testcase_25 AC 132 ms
53,644 KB
testcase_26 AC 130 ms
54,028 KB
testcase_27 AC 134 ms
53,888 KB
testcase_28 AC 132 ms
54,024 KB
testcase_29 AC 122 ms
54,148 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){
            if(dista>=s){
                min = distb+s+a-1;
            }else{
                min = distb+dista+a;
            }
        }else if(distb<dista&&a==0){
            min = distb+s+1;
        }
         else{
            min = distb+dista+a;
        }
        System.out.println(min);
    }    
}
0