結果

問題 No.126 2基のエレベータ
ユーザー kuramubonnkuramubonn
提出日時 2023-02-04 15:36:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 355 bytes
コンパイル時間 2,242 ms
コンパイル使用メモリ 75,212 KB
実行使用メモリ 54,976 KB
最終ジャッジ日時 2024-07-03 12:51:54
合計ジャッジ時間 7,038 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 125 ms
54,212 KB
testcase_03 AC 124 ms
54,068 KB
testcase_04 AC 113 ms
52,804 KB
testcase_05 AC 125 ms
53,976 KB
testcase_06 AC 113 ms
52,812 KB
testcase_07 WA -
testcase_08 AC 120 ms
53,920 KB
testcase_09 AC 110 ms
52,900 KB
testcase_10 AC 120 ms
54,280 KB
testcase_11 AC 124 ms
54,184 KB
testcase_12 AC 113 ms
52,956 KB
testcase_13 AC 126 ms
54,272 KB
testcase_14 AC 112 ms
53,000 KB
testcase_15 AC 111 ms
53,080 KB
testcase_16 WA -
testcase_17 AC 123 ms
53,884 KB
testcase_18 AC 124 ms
54,108 KB
testcase_19 AC 125 ms
53,956 KB
testcase_20 AC 110 ms
53,036 KB
testcase_21 AC 122 ms
53,940 KB
testcase_22 AC 122 ms
54,476 KB
testcase_23 AC 110 ms
52,876 KB
testcase_24 AC 120 ms
53,008 KB
testcase_25 AC 108 ms
52,996 KB
testcase_26 AC 127 ms
54,152 KB
testcase_27 AC 127 ms
54,024 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt(),b = sc.nextInt(),s = sc.nextInt(),count = 0;
		if(Math.abs(a - s) <= Math.abs(b - s) || s == 1)
			count += Math.abs(a - s) + s;
		else 
			count += Math.abs(b - s) + (s - 1) + a;
		System.out.println(count);
	}
}
0