結果

問題 No.126 2基のエレベータ
ユーザー YamaKasaYamaKasa
提出日時 2018-07-14 15:53:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 582 bytes
コンパイル時間 2,079 ms
コンパイル使用メモリ 73,968 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-10-10 05:11:45
合計ジャッジ時間 7,033 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,848 KB
testcase_01 AC 132 ms
54,352 KB
testcase_02 WA -
testcase_03 AC 129 ms
53,884 KB
testcase_04 AC 132 ms
54,264 KB
testcase_05 AC 141 ms
54,048 KB
testcase_06 AC 114 ms
52,804 KB
testcase_07 AC 134 ms
54,212 KB
testcase_08 AC 130 ms
53,612 KB
testcase_09 AC 129 ms
54,036 KB
testcase_10 AC 128 ms
53,792 KB
testcase_11 AC 148 ms
54,044 KB
testcase_12 AC 126 ms
53,992 KB
testcase_13 AC 128 ms
53,804 KB
testcase_14 AC 128 ms
53,948 KB
testcase_15 AC 127 ms
54,104 KB
testcase_16 AC 134 ms
54,020 KB
testcase_17 AC 131 ms
53,932 KB
testcase_18 AC 131 ms
54,248 KB
testcase_19 AC 128 ms
53,972 KB
testcase_20 AC 128 ms
53,876 KB
testcase_21 AC 129 ms
53,964 KB
testcase_22 AC 130 ms
54,120 KB
testcase_23 AC 128 ms
53,908 KB
testcase_24 AC 130 ms
54,120 KB
testcase_25 AC 129 ms
53,956 KB
testcase_26 AC 129 ms
54,072 KB
testcase_27 AC 127 ms
54,032 KB
testcase_28 AC 128 ms
54,040 KB
testcase_29 AC 128 ms
53,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int A = scan.nextInt();
		int B = scan.nextInt();
		int S = scan.nextInt();
		scan.close();
		int l1 = Math.abs(S - A);
		int l2 = Math.abs(S - B);
		if(l1 <= l2) {
			int ans = l1 + S;
			System.out.println(ans);
		}else {
			int ans = l2;
			if(A == 0) {
				ans += 2 + S - 1;
				System.out.println(ans);
				System.exit(0);
			}
			int t1 = l1 + A;
			int t2 = S + Math.abs(A - 1);
			ans += Math.min(t1, t2);
			System.out.println(ans);
		}
	}
}
0