結果

問題 No.126 2基のエレベータ
ユーザー YamaKasaYamaKasa
提出日時 2018-07-14 15:56:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 646 bytes
コンパイル時間 2,388 ms
コンパイル使用メモリ 74,460 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-10-10 05:16:20
合計ジャッジ時間 7,747 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,060 KB
testcase_01 AC 130 ms
40,332 KB
testcase_02 AC 143 ms
41,448 KB
testcase_03 AC 136 ms
41,240 KB
testcase_04 AC 136 ms
41,064 KB
testcase_05 WA -
testcase_06 AC 134 ms
41,068 KB
testcase_07 AC 138 ms
41,312 KB
testcase_08 AC 138 ms
41,220 KB
testcase_09 AC 138 ms
41,352 KB
testcase_10 AC 142 ms
41,540 KB
testcase_11 AC 137 ms
41,392 KB
testcase_12 AC 138 ms
41,376 KB
testcase_13 AC 123 ms
40,052 KB
testcase_14 AC 138 ms
41,048 KB
testcase_15 AC 139 ms
40,928 KB
testcase_16 AC 135 ms
41,244 KB
testcase_17 AC 133 ms
40,892 KB
testcase_18 AC 140 ms
41,304 KB
testcase_19 AC 142 ms
41,640 KB
testcase_20 AC 134 ms
41,228 KB
testcase_21 AC 138 ms
41,136 KB
testcase_22 AC 137 ms
41,188 KB
testcase_23 AC 136 ms
41,516 KB
testcase_24 AC 120 ms
40,240 KB
testcase_25 AC 136 ms
40,988 KB
testcase_26 AC 136 ms
41,088 KB
testcase_27 AC 138 ms
41,060 KB
testcase_28 AC 134 ms
41,068 KB
testcase_29 AC 135 ms
40,920 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(S == 1) {
			System.out.println(A);
			System.exit(0);
		}
		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