結果

問題 No.131 マンハッタン距離
ユーザー kanra661kanra661
提出日時 2015-01-20 23:54:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 396 bytes
コンパイル時間 2,790 ms
コンパイル使用メモリ 74,160 KB
実行使用メモリ 54,012 KB
最終ジャッジ日時 2024-06-22 23:24:50
合計ジャッジ時間 9,401 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,852 KB
testcase_01 WA -
testcase_02 AC 116 ms
41,060 KB
testcase_03 AC 108 ms
40,920 KB
testcase_04 AC 122 ms
41,008 KB
testcase_05 AC 105 ms
40,024 KB
testcase_06 AC 116 ms
41,492 KB
testcase_07 AC 104 ms
41,280 KB
testcase_08 AC 116 ms
41,384 KB
testcase_09 AC 105 ms
41,256 KB
testcase_10 AC 112 ms
41,524 KB
testcase_11 AC 113 ms
41,300 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 97 ms
41,388 KB
testcase_15 AC 115 ms
41,676 KB
testcase_16 AC 117 ms
41,604 KB
testcase_17 WA -
testcase_18 AC 114 ms
41,560 KB
testcase_19 AC 112 ms
41,276 KB
testcase_20 AC 107 ms
41,808 KB
testcase_21 AC 121 ms
41,268 KB
testcase_22 AC 105 ms
41,332 KB
testcase_23 AC 1,125 ms
41,432 KB
testcase_24 WA -
testcase_25 AC 787 ms
41,256 KB
testcase_26 AC 116 ms
41,296 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;
		}
		for (int i = 0; i <= x; i++) {
			int dis = d - i;
			if(dis <= y) count+=1;
		}
		System.out.println(count);
	}
}
0