結果

問題 No.208 王将
ユーザー atkrymatkrym
提出日時 2016-10-23 18:18:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 1,000 ms
コード長 637 bytes
コンパイル時間 3,738 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 41,628 KB
最終ジャッジ日時 2024-11-24 02:01:52
合計ジャッジ時間 6,638 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,080 KB
testcase_01 AC 132 ms
41,004 KB
testcase_02 AC 131 ms
41,160 KB
testcase_03 AC 129 ms
41,108 KB
testcase_04 AC 130 ms
40,920 KB
testcase_05 AC 134 ms
41,324 KB
testcase_06 AC 133 ms
41,080 KB
testcase_07 AC 131 ms
41,124 KB
testcase_08 AC 134 ms
41,628 KB
testcase_09 AC 133 ms
41,044 KB
testcase_10 AC 117 ms
40,056 KB
testcase_11 AC 132 ms
41,224 KB
testcase_12 AC 132 ms
41,144 KB
testcase_13 AC 132 ms
41,260 KB
testcase_14 AC 131 ms
40,964 KB
testcase_15 AC 131 ms
41,332 KB
testcase_16 AC 133 ms
41,208 KB
testcase_17 AC 132 ms
41,176 KB
testcase_18 AC 134 ms
41,340 KB
testcase_19 AC 131 ms
41,096 KB
testcase_20 AC 141 ms
41,080 KB
testcase_21 AC 120 ms
40,244 KB
testcase_22 AC 163 ms
41,296 KB
testcase_23 AC 129 ms
40,968 KB
testcase_24 AC 134 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.text.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int x = sc.nextInt();
        int y = sc.nextInt();
        int x1 = sc.nextInt();
        int y1 = sc.nextInt();
        
        if (x > y) {
            System.out.println(x);
        } else if (y > x) {
            System.out.println(y);
        } else {
            if (x1 == y1 && x1 < x) {
                System.out.println(x+1);
            } else {
                System.out.println(x);
            }
        }
    }
}
0