結果

問題 No.131 マンハッタン距離
ユーザー k_kadorak_kadora
提出日時 2015-05-26 03:24:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 412 bytes
コンパイル時間 3,328 ms
コンパイル使用メモリ 75,188 KB
実行使用メモリ 54,188 KB
最終ジャッジ日時 2024-07-06 08:37:02
合計ジャッジ時間 7,006 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
52,404 KB
testcase_01 AC 115 ms
53,976 KB
testcase_02 AC 118 ms
53,752 KB
testcase_03 AC 117 ms
53,924 KB
testcase_04 AC 112 ms
53,820 KB
testcase_05 AC 107 ms
53,968 KB
testcase_06 AC 110 ms
53,952 KB
testcase_07 AC 117 ms
54,104 KB
testcase_08 AC 100 ms
53,036 KB
testcase_09 AC 115 ms
53,840 KB
testcase_10 AC 102 ms
52,864 KB
testcase_11 AC 107 ms
53,336 KB
testcase_12 AC 111 ms
52,788 KB
testcase_13 AC 115 ms
53,688 KB
testcase_14 AC 114 ms
53,680 KB
testcase_15 AC 101 ms
52,856 KB
testcase_16 AC 112 ms
54,100 KB
testcase_17 AC 114 ms
53,792 KB
testcase_18 AC 116 ms
54,124 KB
testcase_19 AC 107 ms
52,692 KB
testcase_20 AC 116 ms
54,144 KB
testcase_21 AC 103 ms
52,832 KB
testcase_22 AC 117 ms
53,964 KB
testcase_23 AC 121 ms
53,932 KB
testcase_24 AC 109 ms
53,064 KB
testcase_25 AC 120 ms
54,116 KB
testcase_26 AC 127 ms
54,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Distance {
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int x,y,d,res,temp;
		x = sc.nextInt();
		y = sc.nextInt();
		d = sc.nextInt();
		if(d<x){
			if(d<y){
				res = d+1;
			}else{
				res = y + 1;
			}
		}else{
			if(d<y){
				res = x + 1;
			}else{
				res = x + y + 1 - d;
				if(res < 0)res = 0;
			}
		}
		System.out.println(res);
	}
}
0