結果

問題 No.126 2基のエレベータ
ユーザー AoiroFukurouAoiroFukurou
提出日時 2015-01-25 15:56:14
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 665 bytes
コンパイル時間 3,838 ms
コンパイル使用メモリ 74,736 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-06-23 02:37:58
合計ジャッジ時間 7,856 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 124 ms
44,944 KB
testcase_04 AC 108 ms
43,196 KB
testcase_05 WA -
testcase_06 AC 116 ms
44,000 KB
testcase_07 WA -
testcase_08 AC 117 ms
44,368 KB
testcase_09 AC 116 ms
44,192 KB
testcase_10 AC 120 ms
44,404 KB
testcase_11 AC 118 ms
44,600 KB
testcase_12 AC 110 ms
43,248 KB
testcase_13 AC 123 ms
44,672 KB
testcase_14 AC 129 ms
44,484 KB
testcase_15 AC 116 ms
44,536 KB
testcase_16 WA -
testcase_17 AC 125 ms
44,272 KB
testcase_18 AC 124 ms
44,676 KB
testcase_19 AC 122 ms
44,240 KB
testcase_20 AC 123 ms
44,552 KB
testcase_21 AC 111 ms
43,252 KB
testcase_22 AC 134 ms
44,404 KB
testcase_23 AC 124 ms
44,264 KB
testcase_24 AC 130 ms
44,548 KB
testcase_25 AC 123 ms
44,352 KB
testcase_26 AC 105 ms
43,480 KB
testcase_27 AC 122 ms
44,520 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package j_25;

import java.util.Scanner;

public class elebe {
public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	System.err.print("Aを入力-->");
	int A = sc.nextInt();
	System.err.print("Bを入力-->");
	int B = sc.nextInt();
	System.err.print("Sを入力-->");
	int S = sc.nextInt();
	
	int a = Math.abs(S-A);
	int b = Math.abs(S-B);
	
	if(a > b){//Bが選択された時
		int ans = b + S -1 + A;
		System.out.println(ans);
		System.err.println("Bが選択されました");
	}else if(a < b || a==b){//Aが選択された時
		int ans = a + S;
		System.out.println(ans);
		System.err.println("Aが選択されました");
	}
}
}
0