結果

問題 No.208 王将
ユーザー mobius_bkstmobius_bkst
提出日時 2015-05-16 09:37:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,011 bytes
コンパイル時間 2,819 ms
コンパイル使用メモリ 75,176 KB
実行使用メモリ 37,276 KB
最終ジャッジ日時 2024-07-06 04:44:18
合計ジャッジ時間 4,718 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
37,020 KB
testcase_01 AC 43 ms
37,248 KB
testcase_02 AC 43 ms
36,636 KB
testcase_03 AC 44 ms
37,276 KB
testcase_04 AC 43 ms
37,160 KB
testcase_05 AC 43 ms
37,012 KB
testcase_06 WA -
testcase_07 AC 44 ms
37,012 KB
testcase_08 AC 45 ms
37,032 KB
testcase_09 AC 42 ms
36,992 KB
testcase_10 AC 42 ms
37,044 KB
testcase_11 AC 46 ms
37,276 KB
testcase_12 AC 45 ms
36,656 KB
testcase_13 AC 44 ms
36,860 KB
testcase_14 AC 44 ms
36,912 KB
testcase_15 AC 46 ms
37,196 KB
testcase_16 AC 43 ms
36,956 KB
testcase_17 AC 44 ms
36,684 KB
testcase_18 AC 43 ms
36,812 KB
testcase_19 AC 43 ms
36,556 KB
testcase_20 AC 44 ms
36,996 KB
testcase_21 AC 44 ms
37,096 KB
testcase_22 AC 45 ms
37,084 KB
testcase_23 AC 45 ms
36,956 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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 == 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