結果

問題 No.131 マンハッタン距離
ユーザー uafr_csuafr_cs
提出日時 2015-05-15 12:55:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 106 ms / 5,000 ms
コード長 377 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-07-06 03:55:22
合計ジャッジ時間 5,407 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,024 KB
testcase_01 AC 106 ms
40,876 KB
testcase_02 AC 104 ms
41,264 KB
testcase_03 AC 103 ms
41,396 KB
testcase_04 AC 104 ms
41,144 KB
testcase_05 AC 103 ms
40,852 KB
testcase_06 AC 101 ms
40,732 KB
testcase_07 AC 96 ms
40,104 KB
testcase_08 AC 105 ms
41,304 KB
testcase_09 AC 103 ms
41,192 KB
testcase_10 AC 103 ms
41,068 KB
testcase_11 AC 101 ms
41,344 KB
testcase_12 AC 101 ms
40,748 KB
testcase_13 AC 93 ms
40,272 KB
testcase_14 AC 103 ms
40,988 KB
testcase_15 AC 105 ms
41,108 KB
testcase_16 AC 97 ms
40,472 KB
testcase_17 AC 102 ms
40,740 KB
testcase_18 AC 104 ms
40,744 KB
testcase_19 AC 104 ms
41,004 KB
testcase_20 AC 92 ms
40,000 KB
testcase_21 AC 103 ms
40,944 KB
testcase_22 AC 96 ms
40,092 KB
testcase_23 AC 96 ms
40,208 KB
testcase_24 AC 104 ms
41,408 KB
testcase_25 AC 104 ms
41,500 KB
testcase_26 AC 105 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final long x = sc.nextLong();
		final long y = sc.nextLong();
		final long d = sc.nextLong();
		
		System.out.println(Math.max(0, (d + 1) - Math.max(0, d - x) - Math.max(0, d - y)));
	}
	
}
0