結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,380 KB
testcase_01 WA -
testcase_02 AC 135 ms
41,440 KB
testcase_03 AC 135 ms
41,376 KB
testcase_04 AC 134 ms
41,600 KB
testcase_05 AC 135 ms
41,272 KB
testcase_06 AC 139 ms
41,076 KB
testcase_07 WA -
testcase_08 AC 133 ms
41,692 KB
testcase_09 AC 139 ms
41,472 KB
testcase_10 AC 135 ms
41,520 KB
testcase_11 AC 136 ms
41,460 KB
testcase_12 AC 132 ms
41,436 KB
testcase_13 AC 135 ms
41,264 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 136 ms
41,292 KB
testcase_17 WA -
testcase_18 AC 138 ms
41,100 KB
testcase_19 AC 134 ms
41,424 KB
testcase_20 WA -
testcase_21 AC 140 ms
41,376 KB
testcase_22 AC 139 ms
41,304 KB
testcase_23 AC 136 ms
41,444 KB
testcase_24 AC 135 ms
41,208 KB
testcase_25 AC 138 ms
41,392 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 143 ms
41,816 KB
testcase_29 AC 141 ms
41,620 KB
権限があれば一括ダウンロードができます

ソースコード

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 + SA_dist + A);
				
				//System.out.println(SB_dist + (A - 1) + S);
			}
			
		}
		
	}
	
}
0