結果

問題 No.131 マンハッタン距離
ユーザー kuramukuramu
提出日時 2016-02-03 00:24:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 734 bytes
コンパイル時間 2,198 ms
コンパイル使用メモリ 72,844 KB
実行使用メモリ 37,084 KB
最終ジャッジ日時 2024-09-21 20:06:24
合計ジャッジ時間 3,828 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,972 KB
testcase_01 AC 48 ms
36,548 KB
testcase_02 AC 48 ms
36,896 KB
testcase_03 AC 49 ms
36,780 KB
testcase_04 AC 48 ms
36,792 KB
testcase_05 AC 48 ms
36,676 KB
testcase_06 AC 47 ms
36,668 KB
testcase_07 AC 48 ms
36,900 KB
testcase_08 AC 49 ms
36,544 KB
testcase_09 AC 48 ms
36,808 KB
testcase_10 AC 49 ms
36,912 KB
testcase_11 AC 47 ms
36,784 KB
testcase_12 AC 49 ms
36,572 KB
testcase_13 AC 46 ms
36,572 KB
testcase_14 AC 46 ms
36,776 KB
testcase_15 AC 50 ms
37,084 KB
testcase_16 AC 48 ms
36,548 KB
testcase_17 AC 48 ms
36,800 KB
testcase_18 AC 48 ms
36,780 KB
testcase_19 AC 47 ms
36,552 KB
testcase_20 AC 46 ms
36,668 KB
testcase_21 AC 45 ms
36,448 KB
testcase_22 AC 46 ms
36,636 KB
testcase_23 AC 48 ms
36,668 KB
testcase_24 AC 48 ms
36,684 KB
testcase_25 AC 49 ms
36,808 KB
testcase_26 AC 49 ms
36,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {

	 public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	  String[] line = stdReader.readLine().split(" ");
	    	  int x = Integer.parseInt(line[0]);
	    	  int y = Integer.parseInt(line[1]);
	    	  int d = Integer.parseInt(line[2]);
	    	  int ans = d+1;
	    	  if(x+y<d){
	    		  ans = 0;
	    	  }else{
	    		  if(d>x){
	    			  ans -= d-x;
	    		  }
	    		  if(d>y){
	    			  ans -= d-y;
	    		  }
	    	  }
	    	  System.out.println(ans);
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0