結果

問題 No.126 2基のエレベータ
ユーザー ぴろずぴろず
提出日時 2015-01-13 23:52:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 595 bytes
コンパイル時間 2,506 ms
コンパイル使用メモリ 83,480 KB
実行使用メモリ 56,056 KB
最終ジャッジ日時 2024-06-22 05:39:49
合計ジャッジ時間 7,640 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 137 ms
53,732 KB
testcase_02 WA -
testcase_03 AC 134 ms
54,000 KB
testcase_04 AC 132 ms
54,068 KB
testcase_05 AC 133 ms
54,008 KB
testcase_06 AC 137 ms
53,904 KB
testcase_07 AC 131 ms
54,156 KB
testcase_08 AC 134 ms
53,788 KB
testcase_09 AC 135 ms
54,032 KB
testcase_10 AC 136 ms
53,824 KB
testcase_11 AC 136 ms
54,172 KB
testcase_12 WA -
testcase_13 AC 136 ms
54,060 KB
testcase_14 AC 135 ms
54,108 KB
testcase_15 AC 138 ms
54,264 KB
testcase_16 WA -
testcase_17 AC 135 ms
54,172 KB
testcase_18 AC 135 ms
53,956 KB
testcase_19 AC 136 ms
53,916 KB
testcase_20 AC 121 ms
53,008 KB
testcase_21 AC 138 ms
53,812 KB
testcase_22 AC 139 ms
53,820 KB
testcase_23 AC 134 ms
54,000 KB
testcase_24 AC 134 ms
53,796 KB
testcase_25 AC 134 ms
54,292 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  Math.min(lb + Math.abs(a-b) + a,lb + (s-1) + a);
			}
		}
	}

}
0