結果

問題 No.208 王将
ユーザー ぴろずぴろず
提出日時 2015-05-15 22:29:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 625 bytes
コンパイル時間 2,094 ms
コンパイル使用メモリ 73,792 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-07-06 04:02:16
合計ジャッジ時間 5,434 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
40,952 KB
testcase_01 AC 98 ms
40,856 KB
testcase_02 AC 101 ms
41,140 KB
testcase_03 AC 99 ms
40,820 KB
testcase_04 AC 114 ms
41,600 KB
testcase_05 AC 115 ms
41,164 KB
testcase_06 WA -
testcase_07 AC 109 ms
40,924 KB
testcase_08 AC 109 ms
41,372 KB
testcase_09 AC 97 ms
40,244 KB
testcase_10 AC 110 ms
41,164 KB
testcase_11 AC 110 ms
41,232 KB
testcase_12 AC 111 ms
41,220 KB
testcase_13 AC 115 ms
41,076 KB
testcase_14 AC 100 ms
41,284 KB
testcase_15 AC 114 ms
40,668 KB
testcase_16 AC 121 ms
41,128 KB
testcase_17 AC 115 ms
40,848 KB
testcase_18 AC 98 ms
41,056 KB
testcase_19 AC 109 ms
40,984 KB
testcase_20 AC 110 ms
41,204 KB
testcase_21 AC 112 ms
40,100 KB
testcase_22 AC 121 ms
41,068 KB
testcase_23 AC 113 ms
41,056 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package no208;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int x = sc.nextInt();
		int y = sc.nextInt();
		int x2 = sc.nextInt();
		int y2 = sc.nextInt();

		if (!jama(x,y,x2,y2)) {
			System.out.println(Math.max(Math.abs(x), Math.abs(y)));
		}else{
			System.out.println(Math.max(Math.abs(x), Math.abs(y)) + 1);
		}
	}

	public static boolean jama(int x,int y,int x2,int y2) {
		if (Math.abs(x) != Math.abs(y)) {
			return false;
		}
		if (Math.abs(x2) != Math.abs(y2)) {
			return false;
		}
		return x * x2 >= 0 && y * y2 >= 0;
	}

}
0