結果

問題 No.131 マンハッタン距離
ユーザー htensaihtensai
提出日時 2019-12-17 17:23:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 607 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 37,184 KB
最終ジャッジ日時 2024-07-04 01:49:57
合計ジャッジ時間 3,947 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,720 KB
testcase_01 AC 47 ms
37,024 KB
testcase_02 AC 49 ms
36,864 KB
testcase_03 AC 48 ms
36,924 KB
testcase_04 AC 47 ms
37,056 KB
testcase_05 AC 46 ms
36,664 KB
testcase_06 AC 46 ms
36,768 KB
testcase_07 AC 45 ms
36,928 KB
testcase_08 AC 45 ms
36,908 KB
testcase_09 AC 45 ms
36,992 KB
testcase_10 AC 44 ms
36,540 KB
testcase_11 AC 44 ms
36,628 KB
testcase_12 AC 43 ms
36,984 KB
testcase_13 AC 43 ms
36,560 KB
testcase_14 AC 47 ms
37,184 KB
testcase_15 AC 47 ms
36,560 KB
testcase_16 AC 47 ms
36,948 KB
testcase_17 AC 46 ms
37,112 KB
testcase_18 AC 46 ms
36,964 KB
testcase_19 AC 45 ms
36,924 KB
testcase_20 AC 45 ms
36,992 KB
testcase_21 AC 45 ms
37,004 KB
testcase_22 AC 44 ms
36,560 KB
testcase_23 AC 44 ms
36,796 KB
testcase_24 AC 44 ms
37,180 KB
testcase_25 AC 44 ms
36,684 KB
testcase_26 AC 44 ms
36,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 3);
        int x = Integer.parseInt(first[0]);
        int y = Integer.parseInt(first[1]);
        int d = Integer.parseInt(first[2]);
        if (x + y < d) {
            System.out.println(0);
            return;
        }
        int x1 = Math.min(d, x);
        int x2 = Math.max(0, d - y);
        System.out.println(Math.abs(x1 - x2) + 1);
    }
}
0