結果

問題 No.208 王将
ユーザー r.suzukir.suzuki
提出日時 2016-01-08 16:41:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,440 bytes
コンパイル時間 3,453 ms
コンパイル使用メモリ 77,708 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-09-19 13:08:58
合計ジャッジ時間 7,579 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,992 KB
testcase_01 AC 118 ms
54,304 KB
testcase_02 AC 123 ms
54,124 KB
testcase_03 AC 104 ms
52,568 KB
testcase_04 AC 119 ms
53,896 KB
testcase_05 AC 119 ms
53,992 KB
testcase_06 AC 113 ms
52,972 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 104 ms
52,984 KB
testcase_10 AC 109 ms
52,776 KB
testcase_11 AC 109 ms
52,720 KB
testcase_12 AC 116 ms
53,904 KB
testcase_13 AC 121 ms
54,144 KB
testcase_14 AC 106 ms
53,044 KB
testcase_15 AC 123 ms
53,888 KB
testcase_16 AC 126 ms
53,860 KB
testcase_17 AC 121 ms
54,412 KB
testcase_18 AC 114 ms
54,084 KB
testcase_19 AC 119 ms
54,232 KB
testcase_20 AC 117 ms
54,096 KB
testcase_21 AC 111 ms
53,020 KB
testcase_22 AC 123 ms
54,000 KB
testcase_23 AC 122 ms
54,000 KB
testcase_24 AC 120 ms
53,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class No_208 {
	static boolean straight(int x, int y) {
		if (x == 0 || y == 0 || Math.abs(x) == Math.abs(y)) {
			return true;
		} else {
			return false;
		}
	}

	static String direction(int x, int y) {
		if (x == 0) {
			if (y > 0)
				return "N";
			else
				return "S";
		} else if (y == 0) {
			if (x > 0)
				return "E";
			else
				return "W";
		} else if (x == y) {
			if (x > 0)
				return "NE";
			else
				return "SW";
		} else {
			if (x > y)
				return "SE";
			else
				return "NW";
		}
	}

	static boolean inTheWay(String dir, int X, int Y, int fuX, int fuY) {
		switch (dir) {
		case "N":
		case "NE":
			if (Y > fuY)
				return true;
			else
				return false;
		case "E":
		case "SE":
			if (X > fuX)
				return true;
			else
				return false;
		case "S":
		case "SW":
			if (Y < fuY)
				return true;
			else
				return false;
		case "W":
		case "NW":
			if (X < fuX)
				return true;
			else
				return false;
		}
		return false;
	}

	public static void main(String[] args) {
		java.util.Scanner sc = new java.util.Scanner(System.in);
		int X, Y, fuX, fuY;
		X = sc.nextInt();
		Y = sc.nextInt();
		fuX = sc.nextInt();
		fuY = sc.nextInt();

		int step = Math.max(X, Y);

		if (straight(X, Y) && straight(fuX, fuY)) {
			String dir = direction(X, Y);
			if (dir.equals(direction(fuX, fuY))) {
				if (inTheWay(dir, X, Y, fuX, fuY)) {
					step += 1;
				}
			}
		}
		System.out.println(step);
		sc.close();

	}

}
0