結果

問題 No.131 マンハッタン距離
ユーザー koheiarai94koheiarai94
提出日時 2017-09-25 02:08:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 578 bytes
コンパイル時間 2,280 ms
コンパイル使用メモリ 74,576 KB
実行使用メモリ 54,500 KB
最終ジャッジ日時 2024-11-14 07:37:35
合計ジャッジ時間 6,983 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,204 KB
testcase_01 AC 136 ms
53,856 KB
testcase_02 AC 136 ms
54,072 KB
testcase_03 AC 134 ms
54,124 KB
testcase_04 AC 134 ms
53,828 KB
testcase_05 AC 134 ms
53,972 KB
testcase_06 AC 135 ms
54,088 KB
testcase_07 AC 134 ms
54,192 KB
testcase_08 AC 135 ms
54,228 KB
testcase_09 AC 137 ms
53,868 KB
testcase_10 AC 135 ms
54,204 KB
testcase_11 AC 137 ms
54,052 KB
testcase_12 AC 137 ms
53,932 KB
testcase_13 AC 134 ms
54,012 KB
testcase_14 AC 135 ms
54,160 KB
testcase_15 AC 137 ms
54,172 KB
testcase_16 AC 133 ms
54,500 KB
testcase_17 AC 134 ms
54,176 KB
testcase_18 AC 134 ms
54,004 KB
testcase_19 AC 135 ms
54,012 KB
testcase_20 AC 138 ms
54,040 KB
testcase_21 AC 134 ms
54,168 KB
testcase_22 AC 134 ms
54,188 KB
testcase_23 AC 134 ms
53,968 KB
testcase_24 AC 135 ms
54,136 KB
testcase_25 AC 135 ms
54,264 KB
testcase_26 AC 135 ms
53,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

// Yuki 131
// https://yukicoder.me/problems/no/131

public class Main {
	
	public static void main (String[] args) throws InterruptedException {
		Scanner in = new Scanner(System.in);
		
		int x = in.nextInt();
		int y = in.nextInt();
		int d = in.nextInt();
		
		int answer = 0;
		if (d <= y) {
			answer = Math.min(d,  x) + 1;
		} else if (d <= x) {
			answer = Math.min(d, y) + 1;
		} else {
			int crossX = d - y;
			if (0 <= crossX && crossX <= x) {
				int crossY = 0 - x + d;
				answer = y - crossY + 1;
			}
		}
		System.out.println(answer);
	}
}
0