結果

問題 No.131 マンハッタン距離
ユーザー rf141rf141
提出日時 2015-08-05 23:55:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 342 bytes
コンパイル時間 3,432 ms
コンパイル使用メモリ 73,896 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-07-18 03:33:22
合計ジャッジ時間 8,005 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,228 KB
testcase_01 AC 134 ms
41,264 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 119 ms
40,152 KB
testcase_08 AC 130 ms
41,088 KB
testcase_09 AC 131 ms
41,332 KB
testcase_10 AC 133 ms
40,944 KB
testcase_11 AC 132 ms
41,272 KB
testcase_12 AC 117 ms
40,244 KB
testcase_13 AC 128 ms
40,924 KB
testcase_14 AC 132 ms
41,248 KB
testcase_15 AC 133 ms
41,012 KB
testcase_16 AC 128 ms
40,920 KB
testcase_17 AC 132 ms
41,052 KB
testcase_18 AC 130 ms
40,960 KB
testcase_19 AC 136 ms
41,488 KB
testcase_20 AC 131 ms
41,016 KB
testcase_21 AC 134 ms
41,180 KB
testcase_22 AC 131 ms
41,224 KB
testcase_23 AC 133 ms
41,336 KB
testcase_24 AC 129 ms
41,000 KB
testcase_25 AC 132 ms
40,992 KB
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Distance{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		int x = scan.nextInt();
		int y = scan.nextInt();
		int d = scan.nextInt();
		int count=d+1;
		if(x < d)count -= d - x;
		if(y < d)count -= d - y;
		if(x+y<d)System.out.println(0);
		System.out.println(count);
	}
}
0