結果

問題 No.131 マンハッタン距離
ユーザー tsunabittsunabit
提出日時 2020-03-03 22:26:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,202 ms / 5,000 ms
コード長 390 bytes
コンパイル時間 3,121 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 41,296 KB
最終ジャッジ日時 2024-10-13 23:14:19
合計ジャッジ時間 11,029 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,112 KB
testcase_01 AC 122 ms
41,120 KB
testcase_02 AC 108 ms
39,988 KB
testcase_03 AC 233 ms
41,248 KB
testcase_04 AC 199 ms
40,236 KB
testcase_05 AC 174 ms
39,988 KB
testcase_06 AC 139 ms
40,744 KB
testcase_07 AC 121 ms
41,064 KB
testcase_08 AC 127 ms
40,992 KB
testcase_09 AC 120 ms
40,940 KB
testcase_10 AC 121 ms
40,860 KB
testcase_11 AC 119 ms
40,780 KB
testcase_12 AC 120 ms
41,056 KB
testcase_13 AC 121 ms
41,296 KB
testcase_14 AC 120 ms
41,020 KB
testcase_15 AC 104 ms
39,688 KB
testcase_16 AC 122 ms
41,080 KB
testcase_17 AC 119 ms
41,076 KB
testcase_18 AC 119 ms
41,084 KB
testcase_19 AC 107 ms
40,064 KB
testcase_20 AC 123 ms
41,168 KB
testcase_21 AC 105 ms
40,228 KB
testcase_22 AC 118 ms
41,024 KB
testcase_23 AC 939 ms
41,124 KB
testcase_24 AC 1,202 ms
40,976 KB
testcase_25 AC 842 ms
39,996 KB
testcase_26 AC 855 ms
40,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No131 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int x = sc.nextInt(), y = sc.nextInt(), d = sc.nextInt();
		int a = 0;
		if(d == 0) {
			System.out.println(1);
			return;
		}
		for(int i = 0; i <= x; i++) {
			if(y >= d-i && (d-i) >= 0) a++;
		}
		System.out.println(a);
	}
}
0