結果

問題 No.131 マンハッタン距離
ユーザー GrenacheGrenache
提出日時 2015-12-29 00:22:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 697 bytes
コンパイル時間 5,439 ms
コンパイル使用メモリ 74,140 KB
実行使用メモリ 41,788 KB
最終ジャッジ日時 2024-09-19 08:15:16
合計ジャッジ時間 8,825 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,352 KB
testcase_01 AC 113 ms
41,096 KB
testcase_02 AC 105 ms
41,276 KB
testcase_03 AC 105 ms
41,396 KB
testcase_04 AC 123 ms
41,296 KB
testcase_05 AC 103 ms
41,392 KB
testcase_06 AC 117 ms
41,788 KB
testcase_07 AC 117 ms
41,280 KB
testcase_08 AC 116 ms
40,012 KB
testcase_09 AC 116 ms
41,412 KB
testcase_10 AC 118 ms
41,248 KB
testcase_11 AC 120 ms
41,224 KB
testcase_12 AC 118 ms
41,144 KB
testcase_13 AC 115 ms
41,088 KB
testcase_14 AC 116 ms
41,500 KB
testcase_15 AC 120 ms
41,356 KB
testcase_16 AC 122 ms
41,288 KB
testcase_17 AC 122 ms
41,464 KB
testcase_18 AC 109 ms
41,148 KB
testcase_19 AC 110 ms
41,116 KB
testcase_20 AC 116 ms
41,256 KB
testcase_21 AC 119 ms
41,272 KB
testcase_22 AC 102 ms
41,232 KB
testcase_23 AC 115 ms
41,032 KB
testcase_24 AC 113 ms
39,992 KB
testcase_25 AC 116 ms
41,416 KB
testcase_26 AC 111 ms
40,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder131 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int x = sc.nextInt();
        int y = sc.nextInt();
        int d = sc.nextInt();

        System.out.println(getArea(0, 0, x, y, d));

        sc.close();
    }

    private static long getArea(long x1, long y1, long x2, long y2, long d) {
    	if (x2 + y2 == d) {
    		return 1;
    	} else if (x2 + y2 < d) {
    		return 0;
    	} if (x2 >= d && y2 >= d) {
    		return d + 1;
    	} if (x2 >= d) {
    		return y2 + 1;
    	} if (y2 >= d) {
    		return x2 + 1;
    	} else {
    		return d + 1 - (d - x2) - (d - y2);
    	}
	}
}
0