結果

問題 No.208 王将
ユーザー tsunabittsunabit
提出日時 2020-03-15 21:55:39
言語 Java
(openjdk 23)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 344 bytes
コンパイル時間 3,502 ms
コンパイル使用メモリ 80,128 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2024-11-25 22:26:54
合計ジャッジ時間 7,096 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,160 KB
testcase_01 AC 115 ms
40,056 KB
testcase_02 AC 132 ms
41,452 KB
testcase_03 AC 123 ms
41,320 KB
testcase_04 AC 127 ms
41,492 KB
testcase_05 AC 123 ms
41,080 KB
testcase_06 AC 120 ms
41,016 KB
testcase_07 AC 103 ms
40,052 KB
testcase_08 AC 121 ms
41,320 KB
testcase_09 AC 121 ms
41,044 KB
testcase_10 AC 116 ms
40,736 KB
testcase_11 AC 118 ms
41,200 KB
testcase_12 AC 109 ms
40,232 KB
testcase_13 AC 118 ms
41,492 KB
testcase_14 AC 114 ms
41,340 KB
testcase_15 AC 120 ms
41,700 KB
testcase_16 AC 120 ms
41,248 KB
testcase_17 AC 105 ms
40,216 KB
testcase_18 AC 126 ms
41,048 KB
testcase_19 AC 108 ms
40,112 KB
testcase_20 AC 121 ms
41,632 KB
testcase_21 AC 117 ms
41,404 KB
testcase_22 AC 115 ms
41,160 KB
testcase_23 AC 120 ms
41,276 KB
testcase_24 AC 122 ms
41,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

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