結果

問題 No.208 王将
ユーザー tsunabittsunabit
提出日時 2020-03-15 21:54:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 334 bytes
コンパイル時間 3,460 ms
コンパイル使用メモリ 80,372 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-05-04 11:41:40
合計ジャッジ時間 7,808 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,564 KB
testcase_01 AC 137 ms
41,312 KB
testcase_02 AC 129 ms
40,996 KB
testcase_03 AC 134 ms
41,300 KB
testcase_04 AC 131 ms
41,080 KB
testcase_05 AC 134 ms
41,380 KB
testcase_06 WA -
testcase_07 AC 132 ms
41,096 KB
testcase_08 AC 119 ms
40,208 KB
testcase_09 AC 132 ms
41,340 KB
testcase_10 AC 134 ms
41,244 KB
testcase_11 AC 120 ms
40,028 KB
testcase_12 AC 136 ms
41,332 KB
testcase_13 AC 137 ms
41,452 KB
testcase_14 AC 128 ms
41,136 KB
testcase_15 AC 131 ms
41,196 KB
testcase_16 AC 135 ms
41,476 KB
testcase_17 AC 134 ms
41,472 KB
testcase_18 AC 139 ms
41,156 KB
testcase_19 AC 136 ms
41,448 KB
testcase_20 AC 132 ms
41,152 KB
testcase_21 AC 132 ms
41,084 KB
testcase_22 AC 135 ms
41,172 KB
testcase_23 AC 132 ms
41,592 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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) System.out.println(x+1);
		else System.out.println(Math.max(x, y));
	}
}
0