結果

問題 No.131 マンハッタン距離
ユーザー kanra661kanra661
提出日時 2015-01-20 23:55:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 406 bytes
コンパイル時間 2,906 ms
コンパイル使用メモリ 76,432 KB
実行使用メモリ 53,740 KB
最終ジャッジ日時 2024-06-22 23:25:10
合計ジャッジ時間 8,093 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,312 KB
testcase_01 WA -
testcase_02 AC 119 ms
41,600 KB
testcase_03 AC 116 ms
41,544 KB
testcase_04 AC 110 ms
41,460 KB
testcase_05 AC 100 ms
41,740 KB
testcase_06 AC 114 ms
41,520 KB
testcase_07 AC 109 ms
41,300 KB
testcase_08 AC 102 ms
41,484 KB
testcase_09 AC 113 ms
41,856 KB
testcase_10 AC 102 ms
41,604 KB
testcase_11 AC 107 ms
41,264 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 112 ms
42,088 KB
testcase_15 AC 100 ms
39,900 KB
testcase_16 AC 100 ms
41,300 KB
testcase_17 WA -
testcase_18 AC 113 ms
40,256 KB
testcase_19 AC 106 ms
41,392 KB
testcase_20 AC 112 ms
41,204 KB
testcase_21 AC 101 ms
41,536 KB
testcase_22 AC 101 ms
41,228 KB
testcase_23 AC 618 ms
41,320 KB
testcase_24 WA -
testcase_25 AC 534 ms
41,432 KB
testcase_26 AC 114 ms
41,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No_103 {

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