結果

問題 No.131 マンハッタン距離
ユーザー tsunatama5tsunatama5
提出日時 2015-02-04 23:21:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,491 ms / 5,000 ms
コード長 489 bytes
コンパイル時間 3,513 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 41,916 KB
最終ジャッジ日時 2024-06-23 07:29:32
合計ジャッジ時間 13,092 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,868 KB
testcase_01 AC 105 ms
41,232 KB
testcase_02 AC 110 ms
41,304 KB
testcase_03 AC 344 ms
40,244 KB
testcase_04 AC 296 ms
41,916 KB
testcase_05 AC 221 ms
40,200 KB
testcase_06 AC 120 ms
40,264 KB
testcase_07 AC 100 ms
40,396 KB
testcase_08 AC 104 ms
40,240 KB
testcase_09 AC 126 ms
41,488 KB
testcase_10 AC 117 ms
41,132 KB
testcase_11 AC 95 ms
40,116 KB
testcase_12 AC 92 ms
39,912 KB
testcase_13 AC 100 ms
40,516 KB
testcase_14 AC 96 ms
40,108 KB
testcase_15 AC 106 ms
41,004 KB
testcase_16 AC 103 ms
41,168 KB
testcase_17 AC 92 ms
40,536 KB
testcase_18 AC 99 ms
41,100 KB
testcase_19 AC 109 ms
41,180 KB
testcase_20 AC 101 ms
40,284 KB
testcase_21 AC 98 ms
40,192 KB
testcase_22 AC 103 ms
41,544 KB
testcase_23 AC 1,431 ms
40,460 KB
testcase_24 AC 848 ms
41,072 KB
testcase_25 AC 1,429 ms
41,224 KB
testcase_26 AC 1,491 ms
40,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class P131 {
	public static void main(String args[]) {
		
		Scanner sc = new Scanner(System.in);
		String n = sc.nextLine();
		String[] nstrs = n.split(" ");
		int nint[] = new int[3];
		
		for (int a=0;a<3;a++) {
			nint[a] = Integer.parseInt(nstrs[a]);
		}
		
		int x1 = nint[0];
		int y1 = nint[1];
		int d = nint[2];
		int x;
		int ans = 0;
		
		for (x=x1;x>=0;x--) {
			if (d-x>=0 && y1>=(d-x)) {
				ans++;
			}
		}
		System.out.println(ans);		
	}
}
0