結果

問題 No.131 マンハッタン距離
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-21 21:49:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 400 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 78,876 KB
実行使用メモリ 41,680 KB
最終ジャッジ日時 2024-11-27 09:34:14
合計ジャッジ時間 6,708 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,452 KB
testcase_01 AC 118 ms
40,984 KB
testcase_02 AC 117 ms
41,112 KB
testcase_03 AC 107 ms
39,740 KB
testcase_04 AC 117 ms
40,884 KB
testcase_05 AC 117 ms
41,036 KB
testcase_06 AC 121 ms
41,680 KB
testcase_07 AC 116 ms
40,872 KB
testcase_08 AC 118 ms
40,956 KB
testcase_09 AC 119 ms
41,136 KB
testcase_10 AC 117 ms
41,168 KB
testcase_11 AC 123 ms
41,548 KB
testcase_12 AC 106 ms
40,184 KB
testcase_13 AC 121 ms
41,232 KB
testcase_14 AC 136 ms
41,120 KB
testcase_15 AC 130 ms
41,124 KB
testcase_16 AC 120 ms
41,100 KB
testcase_17 AC 115 ms
41,076 KB
testcase_18 AC 118 ms
41,052 KB
testcase_19 AC 104 ms
39,940 KB
testcase_20 AC 122 ms
41,036 KB
testcase_21 AC 114 ms
40,772 KB
testcase_22 AC 117 ms
41,208 KB
testcase_23 AC 116 ms
40,672 KB
testcase_24 AC 118 ms
41,304 KB
testcase_25 AC 116 ms
41,112 KB
testcase_26 AC 117 ms
41,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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