結果

問題 No.208 王将
ユーザー koheiarai94koheiarai94
提出日時 2017-09-25 01:47:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 442 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 74,636 KB
実行使用メモリ 54,416 KB
最終ジャッジ日時 2024-11-14 07:37:01
合計ジャッジ時間 5,961 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
52,996 KB
testcase_01 AC 126 ms
54,092 KB
testcase_02 AC 114 ms
52,940 KB
testcase_03 AC 125 ms
54,260 KB
testcase_04 AC 127 ms
54,104 KB
testcase_05 AC 128 ms
54,284 KB
testcase_06 AC 126 ms
53,940 KB
testcase_07 AC 126 ms
53,996 KB
testcase_08 AC 123 ms
53,872 KB
testcase_09 AC 127 ms
54,116 KB
testcase_10 AC 125 ms
54,024 KB
testcase_11 AC 130 ms
54,168 KB
testcase_12 AC 127 ms
54,328 KB
testcase_13 AC 127 ms
54,016 KB
testcase_14 AC 125 ms
54,416 KB
testcase_15 AC 128 ms
54,180 KB
testcase_16 AC 129 ms
54,068 KB
testcase_17 AC 126 ms
54,364 KB
testcase_18 AC 126 ms
53,860 KB
testcase_19 AC 127 ms
54,276 KB
testcase_20 AC 128 ms
54,016 KB
testcase_21 AC 127 ms
54,192 KB
testcase_22 AC 129 ms
54,152 KB
testcase_23 AC 130 ms
54,232 KB
testcase_24 AC 126 ms
53,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

// Yuki 208
// https://yukicoder.me/problems/no/208

public class Main {
	
	public static void main (String[] args) throws InterruptedException {
		Scanner in = new Scanner(System.in);
		
		int x = in.nextInt();
		int y = in.nextInt();
		int x1 = in.nextInt();
		int y1 = in.nextInt();
		
		long answer = Math.max(x, y);
		if (x1 < x && y1 < y && x == y && x1 == y1) {
			answer++;
		}
		System.out.println(answer);
	}
}
0