結果

問題 No.208 王将
ユーザー tsunabittsunabit
提出日時 2020-03-15 21:55:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 1,000 ms
コード長 344 bytes
コンパイル時間 3,971 ms
コンパイル使用メモリ 74,808 KB
実行使用メモリ 41,848 KB
最終ジャッジ日時 2024-05-04 11:43:00
合計ジャッジ時間 7,004 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,820 KB
testcase_01 AC 112 ms
41,556 KB
testcase_02 AC 94 ms
41,616 KB
testcase_03 AC 96 ms
41,648 KB
testcase_04 AC 108 ms
41,392 KB
testcase_05 AC 108 ms
41,620 KB
testcase_06 AC 105 ms
41,548 KB
testcase_07 AC 109 ms
41,320 KB
testcase_08 AC 98 ms
41,820 KB
testcase_09 AC 109 ms
41,680 KB
testcase_10 AC 114 ms
41,468 KB
testcase_11 AC 119 ms
41,616 KB
testcase_12 AC 115 ms
41,848 KB
testcase_13 AC 114 ms
41,440 KB
testcase_14 AC 120 ms
41,608 KB
testcase_15 AC 109 ms
41,488 KB
testcase_16 AC 109 ms
41,288 KB
testcase_17 AC 111 ms
41,488 KB
testcase_18 AC 118 ms
41,296 KB
testcase_19 AC 115 ms
41,472 KB
testcase_20 AC 97 ms
41,652 KB
testcase_21 AC 114 ms
40,244 KB
testcase_22 AC 113 ms
41,848 KB
testcase_23 AC 116 ms
41,444 KB
testcase_24 AC 99 ms
41,336 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