結果

問題 No.131 マンハッタン距離
ユーザー soujikisoujiki
提出日時 2015-06-23 21:46:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 530 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 76,252 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-07-07 17:12:27
合計ジャッジ時間 7,036 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,980 KB
testcase_01 AC 106 ms
41,084 KB
testcase_02 AC 95 ms
40,052 KB
testcase_03 AC 114 ms
41,360 KB
testcase_04 AC 104 ms
41,276 KB
testcase_05 AC 103 ms
41,240 KB
testcase_06 AC 116 ms
41,232 KB
testcase_07 AC 97 ms
39,872 KB
testcase_08 AC 93 ms
40,136 KB
testcase_09 AC 93 ms
39,952 KB
testcase_10 AC 109 ms
41,388 KB
testcase_11 AC 104 ms
40,892 KB
testcase_12 AC 104 ms
41,144 KB
testcase_13 AC 104 ms
40,948 KB
testcase_14 AC 105 ms
41,048 KB
testcase_15 AC 94 ms
39,620 KB
testcase_16 AC 98 ms
40,212 KB
testcase_17 AC 102 ms
40,956 KB
testcase_18 AC 103 ms
41,136 KB
testcase_19 AC 103 ms
40,856 KB
testcase_20 AC 106 ms
41,188 KB
testcase_21 AC 95 ms
40,124 KB
testcase_22 AC 104 ms
41,456 KB
testcase_23 AC 103 ms
40,952 KB
testcase_24 AC 102 ms
40,436 KB
testcase_25 AC 103 ms
40,808 KB
testcase_26 AC 102 ms
41,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import static java.util.Arrays.*;

class Main{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		PrintWriter out = new PrintWriter(System.out);
		int x = Integer.parseInt(stdIn.next());
		int y = Integer.parseInt(stdIn.next());
		int d = Integer.parseInt(stdIn.next());
		int count = d+1;
		if(x-d<0){
			count += x-d;
		}
		if(y-d<0){
			count += y-d;
		}
		if(count<0){
			count = 0;
		}
		out.println(count);
		out.flush(); 
	}
}
0