結果

問題 No.126 2基のエレベータ
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-06 20:13:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 701 bytes
コンパイル時間 1,834 ms
コンパイル使用メモリ 73,916 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-07-04 03:27:57
合計ジャッジ時間 6,112 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 101 ms
39,888 KB
testcase_02 AC 110 ms
41,312 KB
testcase_03 AC 100 ms
40,264 KB
testcase_04 AC 109 ms
41,056 KB
testcase_05 AC 114 ms
41,496 KB
testcase_06 AC 123 ms
41,560 KB
testcase_07 AC 119 ms
41,504 KB
testcase_08 AC 108 ms
41,160 KB
testcase_09 AC 107 ms
41,168 KB
testcase_10 AC 96 ms
40,224 KB
testcase_11 AC 99 ms
40,228 KB
testcase_12 AC 117 ms
40,980 KB
testcase_13 AC 109 ms
41,040 KB
testcase_14 AC 114 ms
41,128 KB
testcase_15 AC 118 ms
41,508 KB
testcase_16 WA -
testcase_17 AC 114 ms
41,328 KB
testcase_18 AC 118 ms
41,288 KB
testcase_19 AC 118 ms
41,372 KB
testcase_20 AC 108 ms
41,044 KB
testcase_21 AC 102 ms
40,048 KB
testcase_22 AC 115 ms
41,184 KB
testcase_23 AC 115 ms
41,432 KB
testcase_24 AC 120 ms
41,108 KB
testcase_25 AC 115 ms
41,512 KB
testcase_26 AC 115 ms
41,152 KB
testcase_27 AC 117 ms
41,064 KB
testcase_28 AC 112 ms
41,420 KB
testcase_29 AC 108 ms
40,940 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 if(distb<dista&&a==0){
            min = distb+s+1;
        }
         else{
            min = distb+dista+a;
        }
        System.out.println(min);
    }    
}
0