結果

問題 No.208 王将
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-02 18:41:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 387 bytes
コンパイル時間 2,070 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 41,324 KB
最終ジャッジ日時 2024-11-27 17:22:53
合計ジャッジ時間 6,140 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,196 KB
testcase_01 AC 121 ms
41,004 KB
testcase_02 AC 124 ms
41,244 KB
testcase_03 AC 122 ms
41,100 KB
testcase_04 AC 114 ms
40,624 KB
testcase_05 AC 106 ms
39,864 KB
testcase_06 AC 124 ms
41,060 KB
testcase_07 AC 127 ms
41,244 KB
testcase_08 AC 113 ms
40,344 KB
testcase_09 AC 113 ms
40,240 KB
testcase_10 AC 125 ms
40,948 KB
testcase_11 AC 123 ms
41,072 KB
testcase_12 AC 121 ms
40,812 KB
testcase_13 AC 124 ms
41,140 KB
testcase_14 AC 124 ms
41,140 KB
testcase_15 AC 124 ms
41,252 KB
testcase_16 AC 125 ms
40,932 KB
testcase_17 AC 104 ms
39,892 KB
testcase_18 AC 121 ms
41,028 KB
testcase_19 AC 122 ms
40,832 KB
testcase_20 AC 111 ms
40,236 KB
testcase_21 AC 122 ms
41,116 KB
testcase_22 AC 118 ms
40,864 KB
testcase_23 AC 107 ms
39,776 KB
testcase_24 AC 127 ms
41,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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();
        int ans = Math.max(x,y);
        if(x==y&&x2==y2&&x>x2){
            ans++;
        }
        System.out.println(ans);
    }
}
0