結果

問題 No.126 2基のエレベータ
ユーザー ぴろずぴろず
提出日時 2015-01-13 23:43:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 569 bytes
コンパイル時間 1,877 ms
コンパイル使用メモリ 74,528 KB
実行使用メモリ 54,336 KB
最終ジャッジ日時 2024-06-22 05:33:47
合計ジャッジ時間 6,173 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 113 ms
53,872 KB
testcase_02 WA -
testcase_03 AC 109 ms
53,360 KB
testcase_04 AC 115 ms
54,148 KB
testcase_05 AC 117 ms
54,132 KB
testcase_06 AC 122 ms
54,212 KB
testcase_07 AC 117 ms
54,076 KB
testcase_08 AC 116 ms
54,040 KB
testcase_09 AC 110 ms
53,944 KB
testcase_10 AC 112 ms
54,068 KB
testcase_11 AC 105 ms
52,672 KB
testcase_12 WA -
testcase_13 AC 112 ms
53,588 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 102 ms
53,044 KB
testcase_18 AC 106 ms
53,056 KB
testcase_19 AC 115 ms
53,892 KB
testcase_20 WA -
testcase_21 AC 105 ms
52,916 KB
testcase_22 AC 117 ms
54,060 KB
testcase_23 AC 102 ms
52,656 KB
testcase_24 AC 117 ms
54,120 KB
testcase_25 AC 116 ms
54,012 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package no126;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		int c = sc.nextInt();
		System.out.println(solve(a,b,c));
	}

	public static int solve(int a,int b,int s) {
		int la = Math.abs(a-s);
		int lb = Math.abs(b-s);
		int ans = 0;
		if (a == 0) {
			if (la <= lb) {
				return la + s;
			}else{
				return lb + s + 1;
			}
		}else{
			if (la <= lb) {
				return la + s;
			}else{
				return lb + Math.abs(a-b) + a;
			}
		}
	}

}
0