結果

問題 No.131 マンハッタン距離
ユーザー ぴろずぴろず
提出日時 2015-01-20 23:32:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 441 bytes
コンパイル時間 2,003 ms
コンパイル使用メモリ 74,024 KB
実行使用メモリ 41,228 KB
最終ジャッジ日時 2024-06-22 23:16:09
合計ジャッジ時間 5,710 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,064 KB
testcase_01 AC 108 ms
41,072 KB
testcase_02 AC 110 ms
40,896 KB
testcase_03 AC 95 ms
39,564 KB
testcase_04 AC 110 ms
41,168 KB
testcase_05 AC 109 ms
41,128 KB
testcase_06 AC 109 ms
40,996 KB
testcase_07 AC 99 ms
40,196 KB
testcase_08 AC 98 ms
39,872 KB
testcase_09 AC 94 ms
39,908 KB
testcase_10 AC 99 ms
39,672 KB
testcase_11 AC 102 ms
39,748 KB
testcase_12 AC 107 ms
40,852 KB
testcase_13 AC 108 ms
40,868 KB
testcase_14 AC 110 ms
40,840 KB
testcase_15 AC 110 ms
41,148 KB
testcase_16 AC 105 ms
40,712 KB
testcase_17 AC 96 ms
39,824 KB
testcase_18 AC 101 ms
39,984 KB
testcase_19 AC 98 ms
40,120 KB
testcase_20 AC 109 ms
40,980 KB
testcase_21 AC 99 ms
40,312 KB
testcase_22 AC 98 ms
39,772 KB
testcase_23 AC 98 ms
40,172 KB
testcase_24 AC 102 ms
39,928 KB
testcase_25 AC 109 ms
41,228 KB
testcase_26 AC 109 ms
40,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no131;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int x = sc.nextInt();
		int y = sc.nextInt();
		int d = sc.nextInt();
		System.out.println(solve(x,y,d));
	}

	public static long solve(long x,long y,long d) {
		if (d > x + y) {
			return 0;
		}
		long right = d <= x ? d : x;
		long left = d <= y ? 0 : d - y;
		return right - left + 1;
	}

}
0