結果

問題 No.208 王将
ユーザー koheiarai94koheiarai94
提出日時 2017-09-25 01:46:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 450 bytes
コンパイル時間 2,142 ms
コンパイル使用メモリ 74,264 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-11-14 07:36:44
合計ジャッジ時間 6,560 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,224 KB
testcase_01 AC 128 ms
54,056 KB
testcase_02 AC 127 ms
54,092 KB
testcase_03 AC 116 ms
53,072 KB
testcase_04 AC 126 ms
54,124 KB
testcase_05 AC 129 ms
54,096 KB
testcase_06 AC 129 ms
54,204 KB
testcase_07 AC 128 ms
53,948 KB
testcase_08 AC 129 ms
54,392 KB
testcase_09 AC 130 ms
54,056 KB
testcase_10 AC 124 ms
53,948 KB
testcase_11 AC 130 ms
54,108 KB
testcase_12 AC 129 ms
54,016 KB
testcase_13 AC 128 ms
54,044 KB
testcase_14 AC 130 ms
54,264 KB
testcase_15 AC 130 ms
54,180 KB
testcase_16 AC 114 ms
53,100 KB
testcase_17 AC 129 ms
54,120 KB
testcase_18 AC 128 ms
53,824 KB
testcase_19 AC 129 ms
54,060 KB
testcase_20 AC 129 ms
53,900 KB
testcase_21 AC 129 ms
54,164 KB
testcase_22 AC 116 ms
53,000 KB
testcase_23 AC 127 ms
54,156 KB
testcase_24 AC 132 ms
54,136 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);
		
		long x = in.nextLong();
		long y = in.nextLong();
		long x1 = in.nextLong();
		long y1 = in.nextLong();
		
		long answer = Math.max(x, y);
		if (x1 < x && y1 < y && x == y && x1 == y1) {
			answer++;
		}
		System.out.println(answer);
	}
}
0