結果

問題 No.208 王将
ユーザー koheiarai94koheiarai94
提出日時 2017-09-25 01:44:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 430 bytes
コンパイル時間 1,988 ms
コンパイル使用メモリ 74,172 KB
実行使用メモリ 54,480 KB
最終ジャッジ日時 2024-11-14 07:35:49
合計ジャッジ時間 6,252 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,480 KB
testcase_01 AC 133 ms
54,036 KB
testcase_02 AC 135 ms
53,836 KB
testcase_03 AC 132 ms
54,180 KB
testcase_04 AC 133 ms
54,144 KB
testcase_05 AC 137 ms
54,160 KB
testcase_06 WA -
testcase_07 AC 132 ms
54,132 KB
testcase_08 AC 130 ms
53,812 KB
testcase_09 AC 133 ms
54,160 KB
testcase_10 AC 132 ms
54,272 KB
testcase_11 AC 132 ms
54,280 KB
testcase_12 AC 132 ms
54,040 KB
testcase_13 AC 133 ms
54,184 KB
testcase_14 AC 131 ms
54,108 KB
testcase_15 AC 132 ms
53,868 KB
testcase_16 AC 133 ms
53,924 KB
testcase_17 AC 133 ms
54,092 KB
testcase_18 AC 133 ms
54,184 KB
testcase_19 AC 132 ms
54,344 KB
testcase_20 AC 131 ms
54,132 KB
testcase_21 AC 139 ms
54,144 KB
testcase_22 AC 133 ms
54,172 KB
testcase_23 AC 133 ms
53,908 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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 (x == y && x1 == y1) {
			answer++;
		}
		System.out.println(answer);
	}
}
0