結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 104 ms
41,268 KB
testcase_03 AC 112 ms
41,392 KB
testcase_04 AC 111 ms
41,728 KB
testcase_05 AC 116 ms
41,580 KB
testcase_06 AC 104 ms
41,456 KB
testcase_07 WA -
testcase_08 AC 116 ms
41,308 KB
testcase_09 AC 104 ms
41,440 KB
testcase_10 AC 102 ms
41,368 KB
testcase_11 AC 102 ms
41,448 KB
testcase_12 WA -
testcase_13 AC 113 ms
41,316 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 115 ms
40,812 KB
testcase_19 AC 108 ms
40,180 KB
testcase_20 WA -
testcase_21 AC 121 ms
41,180 KB
testcase_22 AC 124 ms
41,264 KB
testcase_23 AC 117 ms
41,244 KB
testcase_24 AC 112 ms
41,032 KB
testcase_25 AC 101 ms
39,932 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 + (A - 1) + B);
			}
			
		}
		
	}
	
}
0