結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,536 KB
testcase_01 WA -
testcase_02 AC 117 ms
41,124 KB
testcase_03 AC 212 ms
41,460 KB
testcase_04 AC 189 ms
41,540 KB
testcase_05 AC 174 ms
41,236 KB
testcase_06 AC 119 ms
41,380 KB
testcase_07 AC 113 ms
41,568 KB
testcase_08 AC 115 ms
41,416 KB
testcase_09 AC 109 ms
41,704 KB
testcase_10 AC 112 ms
41,444 KB
testcase_11 AC 103 ms
41,460 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 112 ms
41,464 KB
testcase_15 AC 115 ms
41,392 KB
testcase_16 AC 110 ms
41,484 KB
testcase_17 WA -
testcase_18 AC 118 ms
41,980 KB
testcase_19 AC 117 ms
41,416 KB
testcase_20 AC 110 ms
41,600 KB
testcase_21 AC 101 ms
41,596 KB
testcase_22 AC 111 ms
41,484 KB
testcase_23 AC 1,116 ms
41,352 KB
testcase_24 WA -
testcase_25 AC 774 ms
41,408 KB
testcase_26 AC 808 ms
41,572 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;
		for (int i = 0; i <= x; i++) {
			int dis = d -i;
			if(dis <= y) count+=1;
		}
		System.out.println(count);
	}
}
0