結果

問題 No.131 マンハッタン距離
ユーザー tsunatama5
提出日時 2015-02-04 23:21:02
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

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