結果

問題 No.131 マンハッタン距離
ユーザー rf141rf141
提出日時 2015-08-06 00:01:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 411 bytes
コンパイル時間 3,359 ms
コンパイル使用メモリ 74,344 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-07-18 03:34:17
合計ジャッジ時間 7,800 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,796 KB
testcase_01 AC 128 ms
41,004 KB
testcase_02 AC 126 ms
41,068 KB
testcase_03 AC 131 ms
41,428 KB
testcase_04 AC 131 ms
40,924 KB
testcase_05 AC 132 ms
41,140 KB
testcase_06 AC 116 ms
39,688 KB
testcase_07 AC 134 ms
41,048 KB
testcase_08 AC 130 ms
41,176 KB
testcase_09 AC 129 ms
41,056 KB
testcase_10 AC 134 ms
40,840 KB
testcase_11 AC 132 ms
40,936 KB
testcase_12 AC 129 ms
41,184 KB
testcase_13 AC 129 ms
41,008 KB
testcase_14 AC 130 ms
40,824 KB
testcase_15 AC 115 ms
39,808 KB
testcase_16 AC 129 ms
40,736 KB
testcase_17 AC 130 ms
41,464 KB
testcase_18 AC 135 ms
40,836 KB
testcase_19 AC 134 ms
41,048 KB
testcase_20 AC 133 ms
41,256 KB
testcase_21 AC 131 ms
41,000 KB
testcase_22 AC 134 ms
41,012 KB
testcase_23 AC 133 ms
40,820 KB
testcase_24 AC 136 ms
40,840 KB
testcase_25 AC 120 ms
39,628 KB
testcase_26 AC 135 ms
41,164 KB
権限があれば一括ダウンロードができます

ソースコード

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);return;}
        System.out.println(count);
    }
}
0