結果

問題 No.208 王将
ユーザー tentententen
提出日時 2020-10-07 11:41:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 2,291 ms
コンパイル使用メモリ 74,296 KB
実行使用メモリ 41,324 KB
最終ジャッジ日時 2024-07-20 03:19:05
合計ジャッジ時間 6,973 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,248 KB
testcase_01 AC 134 ms
41,056 KB
testcase_02 AC 136 ms
41,300 KB
testcase_03 AC 144 ms
41,228 KB
testcase_04 AC 140 ms
41,228 KB
testcase_05 AC 140 ms
40,872 KB
testcase_06 WA -
testcase_07 AC 140 ms
41,068 KB
testcase_08 AC 142 ms
41,316 KB
testcase_09 AC 140 ms
41,248 KB
testcase_10 AC 142 ms
40,996 KB
testcase_11 AC 144 ms
41,324 KB
testcase_12 AC 140 ms
40,996 KB
testcase_13 AC 136 ms
41,092 KB
testcase_14 AC 136 ms
41,076 KB
testcase_15 AC 137 ms
40,896 KB
testcase_16 AC 121 ms
40,100 KB
testcase_17 AC 139 ms
40,964 KB
testcase_18 AC 147 ms
41,068 KB
testcase_19 AC 146 ms
41,228 KB
testcase_20 AC 142 ms
41,112 KB
testcase_21 AC 145 ms
40,992 KB
testcase_22 AC 144 ms
41,132 KB
testcase_23 AC 138 ms
41,168 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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 x1 = sc.nextInt();
		int y1 = sc.nextInt();
		if (x == y && x1 == y1) {
		    System.out.println(x + 1);
		} else {
		    System.out.println(Math.max(x, y));
		}
	}
}
0