結果

問題 No.131 マンハッタン距離
ユーザー YamaKasaYamaKasa
提出日時 2018-07-14 16:49:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 609 bytes
コンパイル時間 2,321 ms
コンパイル使用メモリ 74,000 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-10-10 19:03:22
合計ジャッジ時間 6,953 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,088 KB
testcase_01 AC 134 ms
54,044 KB
testcase_02 AC 138 ms
54,336 KB
testcase_03 AC 138 ms
54,152 KB
testcase_04 AC 138 ms
54,116 KB
testcase_05 AC 139 ms
53,876 KB
testcase_06 AC 139 ms
53,980 KB
testcase_07 AC 133 ms
53,880 KB
testcase_08 AC 131 ms
53,936 KB
testcase_09 AC 128 ms
54,024 KB
testcase_10 AC 130 ms
54,352 KB
testcase_11 AC 131 ms
53,632 KB
testcase_12 AC 131 ms
53,868 KB
testcase_13 AC 136 ms
53,724 KB
testcase_14 AC 134 ms
53,804 KB
testcase_15 AC 133 ms
53,892 KB
testcase_16 AC 132 ms
53,468 KB
testcase_17 AC 131 ms
53,828 KB
testcase_18 AC 133 ms
53,780 KB
testcase_19 AC 132 ms
53,680 KB
testcase_20 AC 132 ms
54,168 KB
testcase_21 AC 130 ms
53,796 KB
testcase_22 AC 137 ms
53,572 KB
testcase_23 AC 134 ms
54,092 KB
testcase_24 AC 133 ms
53,932 KB
testcase_25 AC 134 ms
54,036 KB
testcase_26 AC 138 ms
53,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int x = scan.nextInt();
		int y = scan.nextInt();
		int d = scan.nextInt();
		scan.close();
		if(x + y < d) {
			System.out.println(0);
			System.exit(0);
		}
		if(x >= d && y >= d) {
			System.out.println(d + 1);
		}else if(x < d && y >= d) {
			int ans = d + 1 - (d - x);
			System.out.println(ans);
		}else if(x >= d && y < d) {
			int ans = d + 1 - (d - y);
			System.out.println(ans);
		}else {
			int ans = d + 1 - (d - x) - (d - y);
			System.out.println(ans);
		}

	}
}
0