結果

問題 No.208 王将
ユーザー mobius_bkstmobius_bkst
提出日時 2015-05-16 09:43:07
言語 Java
(openjdk 23)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 1,039 bytes
コンパイル時間 3,333 ms
コンパイル使用メモリ 80,096 KB
実行使用メモリ 50,340 KB
最終ジャッジ日時 2024-10-09 16:22:51
合計ジャッジ時間 5,503 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,052 KB
testcase_01 AC 53 ms
50,328 KB
testcase_02 AC 54 ms
50,212 KB
testcase_03 AC 54 ms
50,212 KB
testcase_04 AC 54 ms
50,252 KB
testcase_05 AC 55 ms
50,116 KB
testcase_06 AC 55 ms
50,252 KB
testcase_07 AC 53 ms
49,824 KB
testcase_08 AC 52 ms
50,224 KB
testcase_09 AC 53 ms
50,340 KB
testcase_10 AC 52 ms
49,888 KB
testcase_11 AC 53 ms
50,312 KB
testcase_12 AC 53 ms
50,296 KB
testcase_13 AC 53 ms
49,924 KB
testcase_14 AC 53 ms
50,216 KB
testcase_15 AC 55 ms
50,244 KB
testcase_16 AC 54 ms
50,172 KB
testcase_17 AC 55 ms
50,212 KB
testcase_18 AC 55 ms
50,204 KB
testcase_19 AC 54 ms
49,848 KB
testcase_20 AC 54 ms
50,300 KB
testcase_21 AC 54 ms
49,944 KB
testcase_22 AC 56 ms
49,948 KB
testcase_23 AC 53 ms
50,300 KB
testcase_24 AC 53 ms
50,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class No208 {
    public static void main(String[] args) {
        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            int[] a = strToIntArray(br.readLine());
            long x = a[0];
            long y = a[1];
            a = strToIntArray(br.readLine());
            long x2 = a[0];
            long y2 = a[1];

            long ans = Math.max(x, y);
            if (x - x2 > 0 && y - y2 > 0 && x == y && x2 == y2) {
                ans += 1;
            }
            System.out.println(ans);
        } catch (Exception e) {
            System.err.println("Error:" + e.getMessage());
        }
    }

    static int[] strToIntArray(String S) {
        String[] strArray = S.split(" ");
        int[] intArray = new int[strArray.length];
        for (int i = 0; i < strArray.length; i++) {
            intArray[i] = Integer.parseInt(strArray[i]);
        }
        return intArray;
    }
}
0