結果

問題 No.126 2基のエレベータ
ユーザー m2543315647m2543315647
提出日時 2015-05-17 16:58:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 321 bytes
コンパイル時間 3,624 ms
コンパイル使用メモリ 75,020 KB
実行使用メモリ 56,268 KB
最終ジャッジ日時 2024-07-06 05:04:01
合計ジャッジ時間 7,453 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 114 ms
54,024 KB
testcase_02 WA -
testcase_03 AC 113 ms
54,148 KB
testcase_04 AC 115 ms
54,024 KB
testcase_05 AC 120 ms
54,124 KB
testcase_06 AC 120 ms
54,184 KB
testcase_07 AC 115 ms
53,840 KB
testcase_08 AC 103 ms
52,968 KB
testcase_09 AC 109 ms
53,780 KB
testcase_10 AC 110 ms
54,208 KB
testcase_11 AC 101 ms
52,920 KB
testcase_12 AC 113 ms
54,108 KB
testcase_13 AC 118 ms
54,224 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 108 ms
54,112 KB
testcase_19 AC 114 ms
54,228 KB
testcase_20 WA -
testcase_21 AC 112 ms
54,300 KB
testcase_22 AC 98 ms
52,788 KB
testcase_23 AC 104 ms
53,004 KB
testcase_24 AC 110 ms
54,020 KB
testcase_25 AC 111 ms
54,036 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 112 ms
54,008 KB
testcase_29 AC 117 ms
54,100 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++;};
		count+=Math.min(Math.abs(a-s),Math.abs(b-s))+s;
		System.out.println(count);
	}
}
0