結果

問題 No.208 王将
ユーザー bambambambam
提出日時 2019-08-27 10:55:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 404 bytes
コンパイル時間 2,076 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 54,416 KB
最終ジャッジ日時 2024-11-14 04:19:20
合計ジャッジ時間 6,490 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
52,960 KB
testcase_01 AC 131 ms
54,144 KB
testcase_02 AC 132 ms
53,892 KB
testcase_03 AC 132 ms
54,236 KB
testcase_04 AC 132 ms
54,112 KB
testcase_05 AC 132 ms
54,288 KB
testcase_06 AC 134 ms
54,116 KB
testcase_07 AC 132 ms
54,320 KB
testcase_08 AC 131 ms
54,004 KB
testcase_09 AC 132 ms
53,912 KB
testcase_10 AC 132 ms
53,892 KB
testcase_11 AC 135 ms
54,128 KB
testcase_12 AC 133 ms
53,840 KB
testcase_13 AC 134 ms
54,180 KB
testcase_14 AC 131 ms
54,216 KB
testcase_15 AC 134 ms
54,208 KB
testcase_16 AC 120 ms
53,088 KB
testcase_17 AC 131 ms
54,276 KB
testcase_18 AC 134 ms
54,416 KB
testcase_19 AC 132 ms
54,052 KB
testcase_20 AC 133 ms
54,116 KB
testcase_21 AC 134 ms
54,332 KB
testcase_22 AC 134 ms
53,976 KB
testcase_23 AC 134 ms
54,392 KB
testcase_24 AC 133 ms
54,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		StringBuilder sb = new StringBuilder();
		int x = sc.nextInt();
		int y = sc.nextInt();
		int x1 = sc.nextInt();
		int y1 = sc.nextInt();
		int ans;
		if (x == y && x1 == y1 && x > x1) {
			ans = x + 1;
		} else {
			ans = Math.max(x, y);
		}
		System.out.println(ans);
	}
}
0