結果

問題 No.126 2基のエレベータ
ユーザー m2543315647m2543315647
提出日時 2015-05-17 17:04:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 345 bytes
コンパイル時間 4,148 ms
コンパイル使用メモリ 78,916 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-07-06 05:04:32
合計ジャッジ時間 8,370 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 130 ms
54,124 KB
testcase_02 AC 132 ms
53,580 KB
testcase_03 AC 134 ms
53,976 KB
testcase_04 AC 133 ms
54,168 KB
testcase_05 AC 134 ms
53,648 KB
testcase_06 AC 131 ms
53,892 KB
testcase_07 AC 116 ms
52,428 KB
testcase_08 AC 130 ms
53,984 KB
testcase_09 AC 133 ms
54,120 KB
testcase_10 AC 134 ms
53,784 KB
testcase_11 AC 122 ms
52,996 KB
testcase_12 AC 134 ms
54,060 KB
testcase_13 AC 132 ms
53,732 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 133 ms
53,804 KB
testcase_19 AC 134 ms
54,060 KB
testcase_20 WA -
testcase_21 AC 131 ms
53,876 KB
testcase_22 AC 131 ms
53,916 KB
testcase_23 AC 131 ms
53,856 KB
testcase_24 AC 132 ms
53,776 KB
testcase_25 AC 132 ms
53,684 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 133 ms
54,172 KB
testcase_29 AC 132 ms
54,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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