結果

問題 No.126 2基のエレベータ
ユーザー uafr_csuafr_cs
提出日時 2015-09-02 18:21:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 670 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 74,616 KB
実行使用メモリ 41,716 KB
最終ジャッジ日時 2024-07-18 21:36:13
合計ジャッジ時間 6,024 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,708 KB
testcase_01 WA -
testcase_02 AC 123 ms
41,152 KB
testcase_03 AC 115 ms
41,544 KB
testcase_04 AC 114 ms
41,188 KB
testcase_05 AC 101 ms
40,140 KB
testcase_06 AC 114 ms
41,156 KB
testcase_07 WA -
testcase_08 AC 102 ms
39,844 KB
testcase_09 AC 119 ms
41,068 KB
testcase_10 AC 120 ms
41,068 KB
testcase_11 AC 109 ms
40,184 KB
testcase_12 AC 118 ms
41,280 KB
testcase_13 AC 101 ms
39,960 KB
testcase_14 AC 98 ms
39,356 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 117 ms
41,436 KB
testcase_19 AC 116 ms
40,944 KB
testcase_20 WA -
testcase_21 AC 101 ms
40,188 KB
testcase_22 AC 105 ms
40,096 KB
testcase_23 AC 116 ms
41,204 KB
testcase_24 AC 109 ms
40,568 KB
testcase_25 AC 113 ms
41,248 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int A = sc.nextInt();
		final int B = sc.nextInt();
		final int S = sc.nextInt();
		
		if(S == 1){ // always A
			System.out.println(Math.abs(1 - A) + 1);
		}else{
			final int SA_dist = Math.abs(A - S);
			final int SB_dist = Math.abs(B - S);
			
			if(SA_dist <= SB_dist){ // near A
				System.out.println(SA_dist + S);
			}else{ // near B
				System.out.println(SB_dist + Math.min(SA_dist + A, B + A));
			}
			
		}
		
	}
	
}
0